| Index: chrome/browser/supervised_user/supervised_user_service.h
|
| diff --git a/chrome/browser/supervised_user/supervised_user_service.h b/chrome/browser/supervised_user/supervised_user_service.h
|
| index 79eb8bbbaa6c854bf2dbb3598718b2e453f1298a..3ae0d9e15b2b3dc69ff9525d7de62d2c665e525f 100644
|
| --- a/chrome/browser/supervised_user/supervised_user_service.h
|
| +++ b/chrome/browser/supervised_user/supervised_user_service.h
|
| @@ -71,12 +71,6 @@ class SupervisedUserService : public KeyedService,
|
| typedef base::Callback<void(const GoogleServiceAuthError&)> AuthErrorCallback;
|
| typedef base::Callback<void(bool)> SuccessCallback;
|
|
|
| - enum ManualBehavior {
|
| - MANUAL_NONE = 0,
|
| - MANUAL_ALLOW,
|
| - MANUAL_BLOCK
|
| - };
|
| -
|
| class Delegate {
|
| public:
|
| virtual ~Delegate() {}
|
| @@ -131,20 +125,6 @@ class SupervisedUserService : public KeyedService,
|
| // empty.
|
| std::string GetCustodianName() const;
|
|
|
| - // These methods allow querying and modifying the manual filtering behavior.
|
| - // The manual behavior is set by the user and overrides all other settings
|
| - // (whitelists or the default behavior).
|
| -
|
| - // Returns the manual behavior for the given host.
|
| - ManualBehavior GetManualBehaviorForHost(const std::string& hostname);
|
| -
|
| - // Returns the manual behavior for the given URL.
|
| - ManualBehavior GetManualBehaviorForURL(const GURL& url);
|
| -
|
| - // Returns all URLS on the given host that have exceptions.
|
| - void GetManualExceptionsForHost(const std::string& host,
|
| - std::vector<GURL>* urls);
|
| -
|
| // Initializes this object. This method does nothing if the profile is not
|
| // supervised.
|
| void Init();
|
|
|