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

Unified Diff: chromeos/login_event_recorder.h

Issue 413473003: Revert of Refactoring : Move AuthAttempt and Authenticators to chromeos/login (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | « chromeos/login/auth/test_attempt_state.cc ('k') | chromeos/login_event_recorder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/login_event_recorder.h
diff --git a/chromeos/login_event_recorder.h b/chromeos/login_event_recorder.h
deleted file mode 100644
index d2adbb2d5246d7e298c93048150569d3eb40177e..0000000000000000000000000000000000000000
--- a/chromeos/login_event_recorder.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright (c) 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.
-
-#ifndef CHROMEOS_LOGIN_EVENT_RECORDER_H_
-#define CHROMEOS_LOGIN_EVENT_RECORDER_H_
-
-#include <string>
-
-#include "base/macros.h"
-#include "chromeos/chromeos_export.h"
-
-namespace chromeos {
-
-// LoginEventRecorder records the bootimes of Chrome OS.
-// Actual implementation is handled by delegate.
-class CHROMEOS_EXPORT LoginEventRecorder {
- public:
- class Delegate {
- public:
- virtual void AddLoginTimeMarker(const std::string& marker_name,
- bool send_to_uma) = 0;
- };
- LoginEventRecorder();
- virtual ~LoginEventRecorder();
-
- static LoginEventRecorder* Get();
-
- void SetDelegate(Delegate* delegate);
-
- // Add a time marker for login. A timeline will be dumped to
- // /tmp/login-times-sent after login is done. If |send_to_uma| is true
- // the time between this marker and the last will be sent to UMA with
- // the identifier BootTime.|marker_name|.
- void AddLoginTimeMarker(const std::string& marker_name, bool send_to_uma);
-
- private:
- Delegate* delegate_;
-
- DISALLOW_COPY_AND_ASSIGN(LoginEventRecorder);
-};
-
-} // namespace chromeos
-
-#endif // CHROMEOS_LOGIN_EVENT_RECORDER_H_
« no previous file with comments | « chromeos/login/auth/test_attempt_state.cc ('k') | chromeos/login_event_recorder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698