OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "extensions/renderer/dispatcher.h" | 5 #include "extensions/renderer/dispatcher.h" |
6 | 6 |
7 #include "base/callback.h" | 7 #include "base/callback.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/debug/alias.h" | 9 #include "base/debug/alias.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 | 789 |
790 void Dispatcher::UpdateOriginPermissions( | 790 void Dispatcher::UpdateOriginPermissions( |
791 UpdatedExtensionPermissionsInfo::Reason reason, | 791 UpdatedExtensionPermissionsInfo::Reason reason, |
792 const Extension* extension, | 792 const Extension* extension, |
793 const URLPatternSet& origins) { | 793 const URLPatternSet& origins) { |
794 for (URLPatternSet::const_iterator i = origins.begin(); i != origins.end(); | 794 for (URLPatternSet::const_iterator i = origins.begin(); i != origins.end(); |
795 ++i) { | 795 ++i) { |
796 const char* schemes[] = { | 796 const char* schemes[] = { |
797 url::kHttpScheme, | 797 url::kHttpScheme, |
798 url::kHttpsScheme, | 798 url::kHttpsScheme, |
799 content::kFileScheme, | 799 url::kFileScheme, |
800 content::kChromeUIScheme, | 800 content::kChromeUIScheme, |
801 content::kFtpScheme, | 801 url::kFtpScheme, |
802 }; | 802 }; |
803 for (size_t j = 0; j < arraysize(schemes); ++j) { | 803 for (size_t j = 0; j < arraysize(schemes); ++j) { |
804 if (i->MatchesScheme(schemes[j])) { | 804 if (i->MatchesScheme(schemes[j])) { |
805 ((reason == UpdatedExtensionPermissionsInfo::REMOVED) | 805 ((reason == UpdatedExtensionPermissionsInfo::REMOVED) |
806 ? WebSecurityPolicy::removeOriginAccessWhitelistEntry | 806 ? WebSecurityPolicy::removeOriginAccessWhitelistEntry |
807 : WebSecurityPolicy::addOriginAccessWhitelistEntry)( | 807 : WebSecurityPolicy::addOriginAccessWhitelistEntry)( |
808 extension->url(), | 808 extension->url(), |
809 WebString::fromUTF8(schemes[j]), | 809 WebString::fromUTF8(schemes[j]), |
810 WebString::fromUTF8(i->host()), | 810 WebString::fromUTF8(i->host()), |
811 i->match_subdomains()); | 811 i->match_subdomains()); |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1212 return v8::Handle<v8::Object>(); | 1212 return v8::Handle<v8::Object>(); |
1213 | 1213 |
1214 if (bind_name) | 1214 if (bind_name) |
1215 *bind_name = split.back(); | 1215 *bind_name = split.back(); |
1216 | 1216 |
1217 return bind_object.IsEmpty() ? AsObjectOrEmpty(GetOrCreateChrome(context)) | 1217 return bind_object.IsEmpty() ? AsObjectOrEmpty(GetOrCreateChrome(context)) |
1218 : bind_object; | 1218 : bind_object; |
1219 } | 1219 } |
1220 | 1220 |
1221 } // namespace extensions | 1221 } // namespace extensions |
OLD | NEW |