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

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

Issue 2918903002: Move IconURLs method from WebFrame to WebLocalFrame (Closed)
Patch Set: Created 3 years, 6 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 "bindings/core/v8/WindowProxy.h" 7 #include "bindings/core/v8/WindowProxy.h"
8 #include "core/dom/Fullscreen.h" 8 #include "core/dom/Fullscreen.h"
9 #include "core/dom/RemoteSecurityContext.h" 9 #include "core/dom/RemoteSecurityContext.h"
10 #include "core/dom/SecurityContext.h" 10 #include "core/dom/SecurityContext.h"
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 WebString WebRemoteFrameImpl::AssignedName() const { 81 WebString WebRemoteFrameImpl::AssignedName() const {
82 NOTREACHED(); 82 NOTREACHED();
83 return WebString(); 83 return WebString();
84 } 84 }
85 85
86 void WebRemoteFrameImpl::SetName(const WebString&) { 86 void WebRemoteFrameImpl::SetName(const WebString&) {
87 NOTREACHED(); 87 NOTREACHED();
88 } 88 }
89 89
90 WebVector<WebIconURL> WebRemoteFrameImpl::IconURLs(int icon_types_mask) const {
91 NOTREACHED();
92 return WebVector<WebIconURL>();
93 }
94
95 void WebRemoteFrameImpl::SetSharedWorkerRepositoryClient( 90 void WebRemoteFrameImpl::SetSharedWorkerRepositoryClient(
96 WebSharedWorkerRepositoryClient*) { 91 WebSharedWorkerRepositoryClient*) {
97 NOTREACHED(); 92 NOTREACHED();
98 } 93 }
99 94
100 void WebRemoteFrameImpl::SetCanHaveScrollbars(bool) { 95 void WebRemoteFrameImpl::SetCanHaveScrollbars(bool) {
101 NOTREACHED(); 96 NOTREACHED();
102 } 97 }
103 98
104 WebSize WebRemoteFrameImpl::GetScrollOffset() const { 99 WebSize WebRemoteFrameImpl::GetScrollOffset() const {
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 } 519 }
525 520
526 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, 521 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope,
527 WebRemoteFrameClient* client) 522 WebRemoteFrameClient* client)
528 : WebRemoteFrameBase(scope), 523 : WebRemoteFrameBase(scope),
529 frame_client_(RemoteFrameClientImpl::Create(this)), 524 frame_client_(RemoteFrameClientImpl::Create(this)),
530 client_(client), 525 client_(client),
531 self_keep_alive_(this) {} 526 self_keep_alive_(this) {}
532 527
533 } // namespace blink 528 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698