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

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: correct rebaseline Created 6 years, 3 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/frame/Settings.h" 10 #include "core/frame/Settings.h"
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 void WebRemoteFrameImpl::setIsolatedWorldSecurityOrigin(int worldID, const WebSe curityOrigin&) 302 void WebRemoteFrameImpl::setIsolatedWorldSecurityOrigin(int worldID, const WebSe curityOrigin&)
303 { 303 {
304 ASSERT_NOT_REACHED(); 304 ASSERT_NOT_REACHED();
305 } 305 }
306 306
307 void WebRemoteFrameImpl::setIsolatedWorldContentSecurityPolicy(int worldID, cons t WebString&) 307 void WebRemoteFrameImpl::setIsolatedWorldContentSecurityPolicy(int worldID, cons t WebString&)
308 { 308 {
309 ASSERT_NOT_REACHED(); 309 ASSERT_NOT_REACHED();
310 } 310 }
311 311
312 void WebRemoteFrameImpl::setIsolatedWorldHumanReadableName(int worldID, const We bString&)
313 {
314 ASSERT_NOT_REACHED();
315 }
316
312 void WebRemoteFrameImpl::addMessageToConsole(const WebConsoleMessage&) 317 void WebRemoteFrameImpl::addMessageToConsole(const WebConsoleMessage&)
313 { 318 {
314 ASSERT_NOT_REACHED(); 319 ASSERT_NOT_REACHED();
315 } 320 }
316 321
317 void WebRemoteFrameImpl::collectGarbage() 322 void WebRemoteFrameImpl::collectGarbage()
318 { 323 {
319 ASSERT_NOT_REACHED(); 324 ASSERT_NOT_REACHED();
320 } 325 }
321 326
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 834
830 WebRemoteFrameImpl* WebRemoteFrameImpl::fromFrame(RemoteFrame& frame) 835 WebRemoteFrameImpl* WebRemoteFrameImpl::fromFrame(RemoteFrame& frame)
831 { 836 {
832 if (!frame.client()) 837 if (!frame.client())
833 return 0; 838 return 0;
834 return static_cast<RemoteFrameClient*>(frame.client())->webFrame(); 839 return static_cast<RemoteFrameClient*>(frame.client())->webFrame();
835 } 840 }
836 841
837 } // namespace blink 842 } // namespace blink
838 843
OLDNEW
« no previous file with comments | « Source/web/WebRemoteFrameImpl.h ('k') | public/web/WebFrame.h » ('j') | public/web/WebFrame.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698