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

Side by Side Diff: Source/web/WebSecurityPolicy.cpp

Issue 54053006: Move weborigin/ under platform/ so that it may someday call platform APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Stale refernence to weboriginexport in .gpyi Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/web/WebSecurityOrigin.cpp ('k') | Source/web/WebSharedWorkerImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 16 matching lines...) Expand all
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "WebSecurityPolicy.h" 32 #include "WebSecurityPolicy.h"
33 33
34 #include "public/platform/WebString.h" 34 #include "public/platform/WebString.h"
35 #include "public/platform/WebURL.h" 35 #include "public/platform/WebURL.h"
36 #include "core/loader/FrameLoader.h" 36 #include "core/loader/FrameLoader.h"
37 #include "weborigin/SchemeRegistry.h" 37 #include "platform/weborigin/SchemeRegistry.h"
38 #include "weborigin/SecurityOrigin.h" 38 #include "platform/weborigin/SecurityOrigin.h"
39 #include "weborigin/SecurityPolicy.h" 39 #include "platform/weborigin/SecurityPolicy.h"
40 40
41 using namespace WebCore; 41 using namespace WebCore;
42 42
43 namespace blink { 43 namespace blink {
44 44
45 void WebSecurityPolicy::registerURLSchemeAsLocal(const WebString& scheme) 45 void WebSecurityPolicy::registerURLSchemeAsLocal(const WebString& scheme)
46 { 46 {
47 SchemeRegistry::registerURLSchemeAsLocal(scheme); 47 SchemeRegistry::registerURLSchemeAsLocal(scheme);
48 } 48 }
49 49
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 { 108 {
109 return SecurityPolicy::generateReferrerHeader(static_cast<ReferrerPolicy>(re ferrerPolicy), url, referrer); 109 return SecurityPolicy::generateReferrerHeader(static_cast<ReferrerPolicy>(re ferrerPolicy), url, referrer);
110 } 110 }
111 111
112 void WebSecurityPolicy::registerURLSchemeAsNotAllowingJavascriptURLs(const WebSt ring& scheme) 112 void WebSecurityPolicy::registerURLSchemeAsNotAllowingJavascriptURLs(const WebSt ring& scheme)
113 { 113 {
114 SchemeRegistry::registerURLSchemeAsNotAllowingJavascriptURLs(scheme); 114 SchemeRegistry::registerURLSchemeAsNotAllowingJavascriptURLs(scheme);
115 } 115 }
116 116
117 } // namespace blink 117 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebSecurityOrigin.cpp ('k') | Source/web/WebSharedWorkerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698