Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1124)

Unified Diff: ash/shared/app_types.h

Issue 2331093002: UMA stats for stylus usage (Closed)
Patch Set: nit and rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/shared/BUILD.gn ('k') | ash/shell.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shared/app_types.h
diff --git a/ash/shared/app_types.h b/ash/shared/app_types.h
new file mode 100644
index 0000000000000000000000000000000000000000..0cebf8d3906496ea19efb40402aa63876360ce77
--- /dev/null
+++ b/ash/shared/app_types.h
@@ -0,0 +1,25 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ASH_SHARED_APP_TYPES_H_
+#define ASH_SHARED_APP_TYPES_H_
+
+namespace ash {
+
+// App type of the window. This enum is used to back
+// an UMA histogram and should be treated as append-only.
+enum class AppType {
+ OTHERS = 0,
+ BROWSER,
+ CHROME_APP,
+ ARC_APP,
+ DEFAULT_NOTE_TAKING_APP,
+ APP_TYPE_LAST = DEFAULT_NOTE_TAKING_APP,
+};
+
+const int kAppCount = static_cast<int>(AppType::APP_TYPE_LAST) + 1;
+
+} // namespace ash
+
+#endif // ASH_SHARED_APP_TYPES_H_
« no previous file with comments | « ash/shared/BUILD.gn ('k') | ash/shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698