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; |