Bug 1885565 - Part 1: Add mozac_ic_avatar_circle_24 to ui-icons r=android-reviewers...
[gecko.git] / toolkit / components / resistfingerprinting / nsUserCharacteristics.h
bloba52bc9aea7fa5eb964659ecbf2a071422f813526
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef __nsUserCharacteristics_h__
7 #define __nsUserCharacteristics_h__
9 #include "ErrorList.h"
11 class nsUserCharacteristics {
12 public:
13 static void MaybeSubmitPing();
15 // Public For testing
16 static nsresult PopulateData(bool aTesting = false);
17 static nsresult SubmitPing();
20 namespace testing {
21 extern "C" { // Needed to call these in the gtest
23 int MaxTouchPoints();
25 } // extern "C"
26 }; // namespace testing
28 #endif /* __nsUserCharacteristics_h__ */