summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/url_pattern.cc
diff options
context:
space:
mode:
authorarv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-10 00:23:37 +0000
committerarv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-10 00:23:37 +0000
commit584b8e3f26b6d751c807907ce3c480a698a961a4 (patch)
tree5faf8d719fa1c43b1033862ed5d7bc30bf25b9e8 /chrome/common/extensions/url_pattern.cc
parente8f6cb0adc4bf051081f6bf4cc2b2054facf38ec (diff)
downloadchromium_src-584b8e3f26b6d751c807907ce3c480a698a961a4.zip
chromium_src-584b8e3f26b6d751c807907ce3c480a698a961a4.tar.gz
chromium_src-584b8e3f26b6d751c807907ce3c480a698a961a4.tar.bz2
Allow extensions to access chrome://favicon/.
An extension needs to add chrome://favicon/ to its permission to able to load favicon images. WebKit changes: https://bugs.webkit.org/show_bug.cgi?id=37228 BUG=37802 TEST=browser_tests.exe --gtest_filter=ExtensionApiTest.* Review URL: http://codereview.chromium.org/1610011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44167 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/url_pattern.cc')
-rw-r--r--chrome/common/extensions/url_pattern.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/common/extensions/url_pattern.cc b/chrome/common/extensions/url_pattern.cc
index ee40c54..e129903 100644
--- a/chrome/common/extensions/url_pattern.cc
+++ b/chrome/common/extensions/url_pattern.cc
@@ -15,6 +15,7 @@ static const char* kValidSchemes[] = {
chrome::kHttpsScheme,
chrome::kFileScheme,
chrome::kFtpScheme,
+ chrome::kChromeUIScheme,
};
static const char kPathSeparator[] = "/";