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

Unified Diff: chrome/browser/signin/signin_pref_observer.h

Issue 12088040: Add a SigninAllowed policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Some bugfixes. Created 7 years, 10 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/signin/signin_pref_observer.h
diff --git a/chrome/browser/signin/signin_pref_observer.h b/chrome/browser/signin/signin_pref_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..c20ffb614631eeef09915cadb7c44c899ac29c98
--- /dev/null
+++ b/chrome/browser/signin/signin_pref_observer.h
@@ -0,0 +1,16 @@
+// Copyright (c) 2013 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_SIGNIN_SIGNIN_PREF_OBSERVER_H_
+#define CHROME_BROWSER_SIGNIN_SIGNIN_PREF_OBSERVER_H_
+
+class SigninPrefObserver {
+ public:
+ virtual void OnSigninAllowedPrefChange(bool signin_allowed) = 0;
+
+ protected:
+ virtual ~SigninPrefObserver() {}
+};
+
+#endif // CHROME_BROWSER_SIGNIN_SIGNIN_PREF_OBSERVER_H_

Powered by Google App Engine
This is Rietveld 408576698