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

Side by Side Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp

Issue 1890513004: Remove dependency on the DevTools agent for console logs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months 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
OLDNEW
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/layout/LayoutObject.h" 10 #include "core/layout/LayoutObject.h"
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 void WebRemoteFrameImpl::setIsolatedWorldContentSecurityPolicy(int worldID, cons t WebString&) 208 void WebRemoteFrameImpl::setIsolatedWorldContentSecurityPolicy(int worldID, cons t WebString&)
209 { 209 {
210 NOTREACHED(); 210 NOTREACHED();
211 } 211 }
212 212
213 void WebRemoteFrameImpl::addMessageToConsole(const WebConsoleMessage&) 213 void WebRemoteFrameImpl::addMessageToConsole(const WebConsoleMessage&)
214 { 214 {
215 NOTREACHED(); 215 NOTREACHED();
216 } 216 }
217 217
218 void WebRemoteFrameImpl::addSecurityMessageToConsole(const WebConsoleMessage&)
219 {
220 ASSERT_NOT_REACHED();
221 }
222
218 void WebRemoteFrameImpl::collectGarbage() 223 void WebRemoteFrameImpl::collectGarbage()
219 { 224 {
220 NOTREACHED(); 225 NOTREACHED();
221 } 226 }
222 227
223 v8::Local<v8::Value> WebRemoteFrameImpl::executeScriptAndReturnValue( 228 v8::Local<v8::Value> WebRemoteFrameImpl::executeScriptAndReturnValue(
224 const WebScriptSource&) 229 const WebScriptSource&)
225 { 230 {
226 NOTREACHED(); 231 NOTREACHED();
227 return v8::Local<v8::Value>(); 232 return v8::Local<v8::Value>();
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 697
693 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli ent* client) 698 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli ent* client)
694 : WebRemoteFrame(scope) 699 : WebRemoteFrame(scope)
695 , m_frameClient(RemoteFrameClientImpl::create(this)) 700 , m_frameClient(RemoteFrameClientImpl::create(this))
696 , m_client(client) 701 , m_client(client)
697 , m_selfKeepAlive(this) 702 , m_selfKeepAlive(this)
698 { 703 {
699 } 704 }
700 705
701 } // namespace blink 706 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698