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

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

Issue 608283003: Remove retail mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
Index: chrome/browser/chromeos/kiosk_mode/kiosk_mode_idle_logout.h
diff --git a/chrome/browser/chromeos/kiosk_mode/kiosk_mode_idle_logout.h b/chrome/browser/chromeos/kiosk_mode/kiosk_mode_idle_logout.h
deleted file mode 100644
index 9f9c63fa6cf2bb04be27ca09f0962602b3583dbf..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/kiosk_mode/kiosk_mode_idle_logout.h
+++ /dev/null
@@ -1,57 +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_IDLE_LOGOUT_H_
-#define CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_IDLE_LOGOUT_H_
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "base/timer/timer.h"
-#include "content/public/browser/notification_observer.h"
-#include "content/public/browser/notification_registrar.h"
-#include "ui/wm/core/user_activity_observer.h"
-
-namespace chromeos {
-
-class KioskModeIdleLogout : public wm::UserActivityObserver,
- public content::NotificationObserver {
- public:
- static void Initialize();
-
- KioskModeIdleLogout();
- virtual ~KioskModeIdleLogout();
-
- private:
- friend class KioskModeIdleLogoutTest;
-
- // Really initialize idle logout when KioskModeHelper is initialized.
- void Setup();
-
- // Overridden from content::NotificationObserver:
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
-
- // wm::UserActivityObserver overrides:
- virtual void OnUserActivity(const ui::Event* event) OVERRIDE;
-
- // Begins listening for user activity and calls ResetTimer().
- void Start();
-
- // Resets |timer_| to fire when the logout dialog should be shown.
- void ResetTimer();
-
- // Invoked by |timer_| to display the logout dialog.
- void OnTimeout();
-
- content::NotificationRegistrar registrar_;
-
- base::OneShotTimer<KioskModeIdleLogout> timer_;
-
- DISALLOW_COPY_AND_ASSIGN(KioskModeIdleLogout);
-};
-
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_IDLE_LOGOUT_H_

Powered by Google App Engine
This is Rietveld 408576698