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

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

Issue 2122083002: Move CSS3 Paged Media interface into WebLocalFrame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More build fixes Created 4 years, 5 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/dom/Fullscreen.h" 7 #include "core/dom/Fullscreen.h"
8 #include "core/dom/RemoteSecurityContext.h" 8 #include "core/dom/RemoteSecurityContext.h"
9 #include "core/dom/SecurityContext.h" 9 #include "core/dom/SecurityContext.h"
10 #include "core/frame/FrameView.h" 10 #include "core/frame/FrameView.h"
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 { 496 {
497 NOTREACHED(); 497 NOTREACHED();
498 } 498 }
499 499
500 bool WebRemoteFrameImpl::isPrintScalingDisabledForPlugin(const WebNode&) 500 bool WebRemoteFrameImpl::isPrintScalingDisabledForPlugin(const WebNode&)
501 { 501 {
502 NOTREACHED(); 502 NOTREACHED();
503 return false; 503 return false;
504 } 504 }
505 505
506 bool WebRemoteFrameImpl::hasCustomPageSizeStyle(int pageIndex)
507 {
508 NOTREACHED();
509 return false;
510 }
511
512 bool WebRemoteFrameImpl::isPageBoxVisible(int pageIndex)
513 {
514 NOTREACHED();
515 return false;
516 }
517
518 void WebRemoteFrameImpl::pageSizeAndMarginsInPixels(
519 int pageIndex,
520 WebSize& pageSize,
521 int& marginTop,
522 int& marginRight,
523 int& marginBottom,
524 int& marginLeft)
525 {
526 NOTREACHED();
527 }
528
529 WebString WebRemoteFrameImpl::pageProperty(const WebString& propertyName, int pa geIndex)
530 {
531 NOTREACHED();
532 return WebString();
533 }
534
535 void WebRemoteFrameImpl::printPagesWithBoundaries(WebCanvas*, const WebSize&) 506 void WebRemoteFrameImpl::printPagesWithBoundaries(WebCanvas*, const WebSize&)
536 { 507 {
537 NOTREACHED(); 508 NOTREACHED();
538 } 509 }
539 510
540 void WebRemoteFrameImpl::dispatchMessageEventWithOriginCheck( 511 void WebRemoteFrameImpl::dispatchMessageEventWithOriginCheck(
541 const WebSecurityOrigin& intendedTargetOrigin, 512 const WebSecurityOrigin& intendedTargetOrigin,
542 const WebDOMEvent&) 513 const WebDOMEvent&)
543 { 514 {
544 NOTREACHED(); 515 NOTREACHED();
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 697
727 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli ent* client) 698 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli ent* client)
728 : WebRemoteFrame(scope) 699 : WebRemoteFrame(scope)
729 , m_frameClient(RemoteFrameClientImpl::create(this)) 700 , m_frameClient(RemoteFrameClientImpl::create(this))
730 , m_client(client) 701 , m_client(client)
731 , m_selfKeepAlive(this) 702 , m_selfKeepAlive(this)
732 { 703 {
733 } 704 }
734 705
735 } // namespace blink 706 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698