summaryrefslogtreecommitdiffstats
path: root/extensions/shell
diff options
context:
space:
mode:
authortreib <treib@chromium.org>2015-08-20 07:27:19 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-20 14:28:05 +0000
commit399178470b3d78bb383cdc56d8a3af6474174271 (patch)
tree2ce20de5e49f75b59d8333b0611469d261df3ffb /extensions/shell
parent391140ca9b908a7a550b3d8573ea16c44ee3d8bc (diff)
downloadchromium_src-399178470b3d78bb383cdc56d8a3af6474174271.zip
chromium_src-399178470b3d78bb383cdc56d8a3af6474174271.tar.gz
chromium_src-399178470b3d78bb383cdc56d8a3af6474174271.tar.bz2
Extensions: Remove PermissionMessage (permission_message.h/cc)
and all the (unused) code that referenced it. [This is part 5 of operation "remove the old permission message system".] BUG=398257 Review URL: https://codereview.chromium.org/1213623006 Cr-Commit-Position: refs/heads/master@{#344495}
Diffstat (limited to 'extensions/shell')
-rw-r--r--extensions/shell/common/shell_extensions_client.cc7
-rw-r--r--extensions/shell/common/shell_extensions_client.h4
2 files changed, 0 insertions, 11 deletions
diff --git a/extensions/shell/common/shell_extensions_client.cc b/extensions/shell/common/shell_extensions_client.cc
index 9b85bf3..3b47c1b 100644
--- a/extensions/shell/common/shell_extensions_client.cc
+++ b/extensions/shell/common/shell_extensions_client.cc
@@ -142,13 +142,6 @@ ShellExtensionsClient::CreateFeatureProviderSource(
void ShellExtensionsClient::FilterHostPermissions(
const URLPatternSet& hosts,
URLPatternSet* new_hosts,
- std::set<PermissionMessage>* messages) const {
- NOTIMPLEMENTED();
-}
-
-void ShellExtensionsClient::FilterHostPermissions(
- const URLPatternSet& hosts,
- URLPatternSet* new_hosts,
PermissionIDSet* permissions) const {
NOTIMPLEMENTED();
}
diff --git a/extensions/shell/common/shell_extensions_client.h b/extensions/shell/common/shell_extensions_client.h
index b901040..a173185 100644
--- a/extensions/shell/common/shell_extensions_client.h
+++ b/extensions/shell/common/shell_extensions_client.h
@@ -27,10 +27,6 @@ class ShellExtensionsClient : public ExtensionsClient {
const std::string& name) const override;
scoped_ptr<JSONFeatureProviderSource> CreateFeatureProviderSource(
const std::string& name) const override;
- void FilterHostPermissions(
- const URLPatternSet& hosts,
- URLPatternSet* new_hosts,
- std::set<PermissionMessage>* messages) const override;
void FilterHostPermissions(const URLPatternSet& hosts,
URLPatternSet* new_hosts,
PermissionIDSet* permissions) const override;