* Don't send any contents of the hw object * Never send app/lang * Don't send download_time_ms The motivation is that these could otherwise potentially be used to fingerprint users.
16 lines
594 B
C++
16 lines
594 B
C++
/* Copyright (c) 2025 The Brave Authors. All rights reserved.
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "base/functional/bind.h"
|
|
#include "base/test/launcher/unit_test_launcher.h"
|
|
#include "base/test/test_suite.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
base::TestSuite test_suite(argc, argv);
|
|
return base::LaunchUnitTests(
|
|
argc, argv,
|
|
base::BindOnce(&base::TestSuite::Run, base::Unretained(&test_suite)));
|
|
}
|