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

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

Issue 15764004: DevTools: show extension name in console context switcher (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaseline. Created 6 years, 4 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 | Annotate | Revision Log
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 "config.h" 5 #include "config.h"
6 #include "web/WebRemoteFrameImpl.h" 6 #include "web/WebRemoteFrameImpl.h"
7 7
8 #include "core/frame/FrameOwner.h" 8 #include "core/frame/FrameOwner.h"
9 #include "core/frame/RemoteFrame.h" 9 #include "core/frame/RemoteFrame.h"
10 #include "core/page/Page.h" 10 #include "core/page/Page.h"
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 void WebRemoteFrameImpl::setIsolatedWorldSecurityOrigin(int worldID, const WebSe curityOrigin&) 301 void WebRemoteFrameImpl::setIsolatedWorldSecurityOrigin(int worldID, const WebSe curityOrigin&)
302 { 302 {
303 ASSERT_NOT_REACHED(); 303 ASSERT_NOT_REACHED();
304 } 304 }
305 305
306 void WebRemoteFrameImpl::setIsolatedWorldContentSecurityPolicy(int worldID, cons t WebString&) 306 void WebRemoteFrameImpl::setIsolatedWorldContentSecurityPolicy(int worldID, cons t WebString&)
307 { 307 {
308 ASSERT_NOT_REACHED(); 308 ASSERT_NOT_REACHED();
309 } 309 }
310 310
311 void WebRemoteFrameImpl::setIsolatedWorldHumanReadableName(int worldID, const We bString&)
312 {
313 ASSERT_NOT_REACHED();
314 }
315
311 void WebRemoteFrameImpl::addMessageToConsole(const WebConsoleMessage&) 316 void WebRemoteFrameImpl::addMessageToConsole(const WebConsoleMessage&)
312 { 317 {
313 ASSERT_NOT_REACHED(); 318 ASSERT_NOT_REACHED();
314 } 319 }
315 320
316 void WebRemoteFrameImpl::collectGarbage() 321 void WebRemoteFrameImpl::collectGarbage()
317 { 322 {
318 ASSERT_NOT_REACHED(); 323 ASSERT_NOT_REACHED();
319 } 324 }
320 325
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
828 833
829 WebRemoteFrameImpl* WebRemoteFrameImpl::fromFrame(RemoteFrame& frame) 834 WebRemoteFrameImpl* WebRemoteFrameImpl::fromFrame(RemoteFrame& frame)
830 { 835 {
831 if (!frame.client()) 836 if (!frame.client())
832 return 0; 837 return 0;
833 return static_cast<RemoteFrameClient*>(frame.client())->webFrame(); 838 return static_cast<RemoteFrameClient*>(frame.client())->webFrame();
834 } 839 }
835 840
836 } // namespace blink 841 } // namespace blink
837 842
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698