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

Unified Diff: chrome/browser/android/activity_type_ids.cc

Issue 137623002: Let MetricsService know about some Android Activities (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: line warp fix Created 6 years, 11 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
Index: chrome/browser/android/activity_type_ids.cc
diff --git a/chrome/browser/android/activity_type_ids.cc b/chrome/browser/android/activity_type_ids.cc
new file mode 100644
index 0000000000000000000000000000000000000000..98a1724aa9a9da0654c4ff388aa43893d2c3f669
--- /dev/null
+++ b/chrome/browser/android/activity_type_ids.cc
@@ -0,0 +1,19 @@
+// Copyright 2014 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.
+
+#include "chrome/browser/android/activity_type_ids.h"
+
+#include "base/logging.h"
+
+namespace ActivityTypeIds {
+
+Type GetActivityType(int type_id) {
+ if (type_id >= ACTIVITY_NONE && type_id <= ACTIVITY_MAX_VALUE)
+ return Type(type_id);
+
+ NOTREACHED() << "Unhandled Activity id was passed in: " << type_id;
+ return ACTIVITY_MAX_VALUE;
+}
+
+} // namespace ActivityTypeIds

Powered by Google App Engine
This is Rietveld 408576698