| Index: third_party/WebKit/Source/platform/weborigin/SecurityPolicy.cpp
|
| diff --git a/third_party/WebKit/Source/platform/weborigin/SecurityPolicy.cpp b/third_party/WebKit/Source/platform/weborigin/SecurityPolicy.cpp
|
| index 0e88444bad831533cd74b5ba0e7762035d236c4b..bab895b38527acf6740e77fdf22cc7210fce0bd8 100644
|
| --- a/third_party/WebKit/Source/platform/weborigin/SecurityPolicy.cpp
|
| +++ b/third_party/WebKit/Source/platform/weborigin/SecurityPolicy.cpp
|
| @@ -180,7 +180,7 @@ bool SecurityPolicy::isUrlWhiteListedTrustworthy(const KURL& url) {
|
| bool SecurityPolicy::isAccessWhiteListed(const SecurityOrigin* activeOrigin,
|
| const SecurityOrigin* targetOrigin) {
|
| if (OriginAccessWhiteList* list =
|
| - originAccessMap().get(activeOrigin->toString())) {
|
| + originAccessMap().at(activeOrigin->toString())) {
|
| for (size_t i = 0; i < list->size(); ++i) {
|
| if (list->at(i).matchesOrigin(*targetOrigin) !=
|
| OriginAccessEntry::DoesNotMatchOrigin)
|
|
|