| 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 "web/WebRemoteFrameImpl.h" | 5 #include "web/WebRemoteFrameImpl.h" |
| 6 | 6 |
| 7 #include "core/frame/FrameView.h" | 7 #include "core/frame/FrameView.h" |
| 8 #include "core/frame/Settings.h" | 8 #include "core/frame/Settings.h" |
| 9 #include "core/html/HTMLFrameOwnerElement.h" | 9 #include "core/html/HTMLFrameOwnerElement.h" |
| 10 #include "core/page/Page.h" | 10 #include "core/page/Page.h" |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 void WebRemoteFrameImpl::addMessageToConsole(const WebConsoleMessage&) | 243 void WebRemoteFrameImpl::addMessageToConsole(const WebConsoleMessage&) |
| 244 { | 244 { |
| 245 ASSERT_NOT_REACHED(); | 245 ASSERT_NOT_REACHED(); |
| 246 } | 246 } |
| 247 | 247 |
| 248 void WebRemoteFrameImpl::collectGarbage() | 248 void WebRemoteFrameImpl::collectGarbage() |
| 249 { | 249 { |
| 250 ASSERT_NOT_REACHED(); | 250 ASSERT_NOT_REACHED(); |
| 251 } | 251 } |
| 252 | 252 |
| 253 bool WebRemoteFrameImpl::checkIfRunInsecureContent(const WebURL&) const | |
| 254 { | |
| 255 ASSERT_NOT_REACHED(); | |
| 256 return false; | |
| 257 } | |
| 258 | |
| 259 v8::Local<v8::Value> WebRemoteFrameImpl::executeScriptAndReturnValue( | 253 v8::Local<v8::Value> WebRemoteFrameImpl::executeScriptAndReturnValue( |
| 260 const WebScriptSource&) | 254 const WebScriptSource&) |
| 261 { | 255 { |
| 262 ASSERT_NOT_REACHED(); | 256 ASSERT_NOT_REACHED(); |
| 263 return v8::Local<v8::Value>(); | 257 return v8::Local<v8::Value>(); |
| 264 } | 258 } |
| 265 | 259 |
| 266 void WebRemoteFrameImpl::executeScriptInIsolatedWorld( | 260 void WebRemoteFrameImpl::executeScriptInIsolatedWorld( |
| 267 int worldID, const WebScriptSource* sourcesIn, unsigned numSources, | 261 int worldID, const WebScriptSource* sourcesIn, unsigned numSources, |
| 268 int extensionGroup, WebVector<v8::Local<v8::Value>>* results) | 262 int extensionGroup, WebVector<v8::Local<v8::Value>>* results) |
| (...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 : WebRemoteFrame(scope) | 813 : WebRemoteFrame(scope) |
| 820 , m_frameClient(RemoteFrameClientImpl::create(this)) | 814 , m_frameClient(RemoteFrameClientImpl::create(this)) |
| 821 , m_client(client) | 815 , m_client(client) |
| 822 #if ENABLE(OILPAN) | 816 #if ENABLE(OILPAN) |
| 823 , m_selfKeepAlive(this) | 817 , m_selfKeepAlive(this) |
| 824 #endif | 818 #endif |
| 825 { | 819 { |
| 826 } | 820 } |
| 827 | 821 |
| 828 } // namespace blink | 822 } // namespace blink |
| OLD | NEW |