| 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 #ifndef WebRemoteFrameImpl_h | 5 #ifndef WebRemoteFrameImpl_h |
| 6 #define WebRemoteFrameImpl_h | 6 #define WebRemoteFrameImpl_h |
| 7 | 7 |
| 8 #include "core/frame/RemoteFrame.h" | 8 #include "core/frame/RemoteFrame.h" |
| 9 #include "platform/heap/SelfKeepAlive.h" | 9 #include "platform/heap/SelfKeepAlive.h" |
| 10 #include "public/platform/WebInsecureRequestPolicy.h" | 10 #include "public/platform/WebInsecureRequestPolicy.h" |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 void dispatchUnloadEvent() override; | 55 void dispatchUnloadEvent() override; |
| 56 void executeScript(const WebScriptSource&) override; | 56 void executeScript(const WebScriptSource&) override; |
| 57 void executeScriptInIsolatedWorld(int worldID, | 57 void executeScriptInIsolatedWorld(int worldID, |
| 58 const WebScriptSource* sources, | 58 const WebScriptSource* sources, |
| 59 unsigned numSources, | 59 unsigned numSources, |
| 60 int extensionGroup) override; | 60 int extensionGroup) override; |
| 61 void setIsolatedWorldSecurityOrigin(int worldID, | 61 void setIsolatedWorldSecurityOrigin(int worldID, |
| 62 const WebSecurityOrigin&) override; | 62 const WebSecurityOrigin&) override; |
| 63 void setIsolatedWorldContentSecurityPolicy(int worldID, | 63 void setIsolatedWorldContentSecurityPolicy(int worldID, |
| 64 const WebString&) override; | 64 const WebString&) override; |
| 65 void addMessageToConsole(const WebConsoleMessage&) override; | |
| 66 void collectGarbage() override; | 65 void collectGarbage() override; |
| 67 v8::Local<v8::Value> executeScriptAndReturnValue( | 66 v8::Local<v8::Value> executeScriptAndReturnValue( |
| 68 const WebScriptSource&) override; | 67 const WebScriptSource&) override; |
| 69 void executeScriptInIsolatedWorld( | 68 void executeScriptInIsolatedWorld( |
| 70 int worldID, | 69 int worldID, |
| 71 const WebScriptSource* sourcesIn, | 70 const WebScriptSource* sourcesIn, |
| 72 unsigned numSources, | 71 unsigned numSources, |
| 73 int extensionGroup, | 72 int extensionGroup, |
| 74 WebVector<v8::Local<v8::Value>>* results) override; | 73 WebVector<v8::Local<v8::Value>>* results) override; |
| 75 v8::Local<v8::Value> callFunctionEvenIfScriptDisabled( | 74 v8::Local<v8::Value> callFunctionEvenIfScriptDisabled( |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 | 189 |
| 191 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, | 190 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, |
| 192 WebFrame, | 191 WebFrame, |
| 193 frame, | 192 frame, |
| 194 frame->isWebRemoteFrame(), | 193 frame->isWebRemoteFrame(), |
| 195 frame.isWebRemoteFrame()); | 194 frame.isWebRemoteFrame()); |
| 196 | 195 |
| 197 } // namespace blink | 196 } // namespace blink |
| 198 | 197 |
| 199 #endif // WebRemoteFrameImpl_h | 198 #endif // WebRemoteFrameImpl_h |
| OLD | NEW |