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

Unified Diff: chrome/browser/content_settings/content_settings_custom_extension_provider.h

Issue 748723002: Move content_settings_custom_extension_provider.* to c/b/extensions/api/content_settings/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | chrome/browser/content_settings/content_settings_custom_extension_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/content_settings/content_settings_custom_extension_provider.h
diff --git a/chrome/browser/content_settings/content_settings_custom_extension_provider.h b/chrome/browser/content_settings/content_settings_custom_extension_provider.h
deleted file mode 100644
index 4107803ef11885f51a651975ffb1d420d80a6b77..0000000000000000000000000000000000000000
--- a/chrome/browser/content_settings/content_settings_custom_extension_provider.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_CUSTOM_EXTENSION_PROVIDER_H_
-#define CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_CUSTOM_EXTENSION_PROVIDER_H_
-
-#include <string>
-
-#include "base/memory/ref_counted.h"
-#include "chrome/browser/extensions/api/content_settings/content_settings_store.h"
-#include "components/content_settings/core/browser/content_settings_observable_provider.h"
-
-namespace content_settings {
-
-// A content settings provider which manages settings defined by extensions.
-class CustomExtensionProvider : public ObservableProvider,
- public extensions::ContentSettingsStore::Observer {
- public:
- CustomExtensionProvider(const scoped_refptr<extensions::ContentSettingsStore>&
- extensions_settings,
- bool incognito);
-
- ~CustomExtensionProvider() override;
-
- // ProviderInterface methods:
- RuleIterator* GetRuleIterator(ContentSettingsType content_type,
- const ResourceIdentifier& resource_identifier,
- bool incognito) const override;
-
- bool SetWebsiteSetting(const ContentSettingsPattern& primary_pattern,
- const ContentSettingsPattern& secondary_pattern,
- ContentSettingsType content_type,
- const ResourceIdentifier& resource_identifier,
- base::Value* value) override;
-
- void ClearAllContentSettingsRules(ContentSettingsType content_type) override {
- }
-
- void ShutdownOnUIThread() override;
-
- // extensions::ContentSettingsStore::Observer methods:
- void OnContentSettingChanged(const std::string& extension_id,
- bool incognito) override;
-
- private:
- // Specifies whether this provider manages settings for incognito or regular
- // sessions.
- bool incognito_;
-
- // The backend storing content setting rules defined by extensions.
- scoped_refptr<extensions::ContentSettingsStore> extensions_settings_;
-
- DISALLOW_COPY_AND_ASSIGN(CustomExtensionProvider);
-};
-
-} // namespace content_settings
-
-#endif // CHROME_BROWSER_CONTENT_SETTINGS_CONTENT_SETTINGS_CUSTOM_EXTENSION_PROVIDER_H_
« no previous file with comments | « no previous file | chrome/browser/content_settings/content_settings_custom_extension_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698