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

Unified Diff: chrome/browser/chromeos/login/signed_settings_helper.h

Issue 8163011: PART3: Removed whitelist special ops. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased on ToT where both previous parts are committed. Created 9 years, 1 month 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/login/signed_settings_helper.h
diff --git a/chrome/browser/chromeos/login/signed_settings_helper.h b/chrome/browser/chromeos/login/signed_settings_helper.h
index 1d1411c757e4ccf59fc888dc9b8db30aa76e7b37..61ed87345c3bb2573e9f3f3e0b3a7822871cdd88 100644
--- a/chrome/browser/chromeos/login/signed_settings_helper.h
+++ b/chrome/browser/chromeos/login/signed_settings_helper.h
@@ -28,20 +28,6 @@ class SignedSettingsHelper {
public:
class Callback {
public:
- // Callback of CheckWhitelistOp. |success| indicates whether the op succeeds
- // or not. |email| is the email that is checked against.
- virtual void OnCheckWhitelistCompleted(
- SignedSettings::ReturnCode code,
- const std::string& email) {}
-
- // Callback of WhitelistOp that adds |email| to the whitelist.
- virtual void OnWhitelistCompleted(
- SignedSettings::ReturnCode code, const std::string& email) {}
-
- // Callback of WhitelistOp that removes |email| to the whitelist.
- virtual void OnUnwhitelistCompleted(
- SignedSettings::ReturnCode code, const std::string& email) {}
-
// Callback of StorePropertyOp.
virtual void OnStorePropertyCompleted(
SignedSettings::ReturnCode code,
@@ -68,11 +54,6 @@ class SignedSettingsHelper {
static SignedSettingsHelper* Get();
// Functions to start signed settings ops.
- virtual void StartCheckWhitelistOp(const std::string& email,
- Callback* callback) = 0;
- virtual void StartWhitelistOp(const std::string& email,
- bool add_to_whitelist,
- Callback* callback) = 0;
virtual void StartStorePropertyOp(const std::string& name,
const base::Value& value,
Callback* callback) = 0;
« no previous file with comments | « chrome/browser/chromeos/login/signed_settings.cc ('k') | chrome/browser/chromeos/login/signed_settings_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698