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

Unified Diff: chrome/browser/chromeos/login/signed_settings.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.h
diff --git a/chrome/browser/chromeos/login/signed_settings.h b/chrome/browser/chromeos/login/signed_settings.h
index 56e1623201a6e2687c88c94c0ca1133eabd70b91..3a04fc463a6fad7c7677742355fe439477346533 100644
--- a/chrome/browser/chromeos/login/signed_settings.h
+++ b/chrome/browser/chromeos/login/signed_settings.h
@@ -61,16 +61,6 @@ class SignedSettings : public base::RefCountedThreadSafe<SignedSettings>,
SignedSettings();
virtual ~SignedSettings();
- // These are both "whitelist" operations, and only one instance of
- // one type can be in flight at a time.
- static SignedSettings* CreateCheckWhitelistOp(
- const std::string& email,
- SignedSettings::Delegate<bool>* d);
-
- static SignedSettings* CreateWhitelistOp(const std::string& email,
- bool add_to_whitelist,
- SignedSettings::Delegate<bool>* d);
-
// These are both "property" operations, and only one instance of
// one type can be in flight at a time.
static SignedSettings* CreateStorePropertyOp(
@@ -91,8 +81,6 @@ class SignedSettings : public base::RefCountedThreadSafe<SignedSettings>,
static SignedSettings* CreateRetrievePolicyOp(
SignedSettings::Delegate<const em::PolicyFetchResponse&>* d);
- static bool EnumerateWhitelist(std::vector<std::string>* whitelisted);
-
static ReturnCode MapKeyOpCode(OwnerManager::KeyOpCode code);
virtual void Execute() = 0;

Powered by Google App Engine
This is Rietveld 408576698