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

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 the new PART2. (I think it should be 100% the same but I'd rather upload it) Created 9 years, 2 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/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 0a80ef829a32ab4ab542e44c631bcbe492aafe91..142fd16b889b6e14a2513710f9d42e915f5d48af 100644
--- a/chrome/browser/chromeos/login/signed_settings_helper.h
+++ b/chrome/browser/chromeos/login/signed_settings_helper.h
@@ -25,20 +25,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,
@@ -65,11 +51,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;

Powered by Google App Engine
This is Rietveld 408576698