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

Unified Diff: chrome/browser/chromeos/kiosk_mode/kiosk_mode_metrics.h

Issue 10825257: Remove metrics collection from Kiosk Mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « no previous file | chrome/browser/chromeos/kiosk_mode/kiosk_mode_metrics.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/kiosk_mode/kiosk_mode_metrics.h
diff --git a/chrome/browser/chromeos/kiosk_mode/kiosk_mode_metrics.h b/chrome/browser/chromeos/kiosk_mode/kiosk_mode_metrics.h
deleted file mode 100644
index 028e9ae45c8be0dbacd1aa8d0b2a09349aaecd97..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/kiosk_mode/kiosk_mode_metrics.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) 2012 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 CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_METRICS_H_
-#define CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_METRICS_H_
-
-#include "base/time.h"
-
-namespace chromeos {
-
-// This class gathers metrics for Kiosk Mode.
-class KioskModeMetrics {
- public:
- static KioskModeMetrics* Get();
-
- // This method records that the demo user session was started.
- void SessionStarted();
-
- // This method records that the demo user session was ended.
- void SessionEnded();
-
- // This method records that the user opened an app.
- void UserOpenedApp();
-
- private:
- KioskModeMetrics();
- ~KioskModeMetrics();
-
- base::Time session_started_;
- size_t apps_opened_;
-
- DISALLOW_COPY_AND_ASSIGN(KioskModeMetrics);
-};
-
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_METRICS_H_
« no previous file with comments | « no previous file | chrome/browser/chromeos/kiosk_mode/kiosk_mode_metrics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698