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

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

Issue 1672073003: Shunt string-dumping functions from WebFrame to a side class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added/updated TODOs. Created 4 years, 10 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 ASSERT_NOT_REACHED(); 582 ASSERT_NOT_REACHED();
583 } 583 }
584 584
585 void WebRemoteFrameImpl::dispatchMessageEventWithOriginCheck( 585 void WebRemoteFrameImpl::dispatchMessageEventWithOriginCheck(
586 const WebSecurityOrigin& intendedTargetOrigin, 586 const WebSecurityOrigin& intendedTargetOrigin,
587 const WebDOMEvent&) 587 const WebDOMEvent&)
588 { 588 {
589 ASSERT_NOT_REACHED(); 589 ASSERT_NOT_REACHED();
590 } 590 }
591 591
592 WebString WebRemoteFrameImpl::contentAsText(size_t maxChars) const
593 {
594 ASSERT_NOT_REACHED();
595 return WebString();
596 }
597
598 WebString WebRemoteFrameImpl::contentAsMarkup() const
599 {
600 ASSERT_NOT_REACHED();
601 return WebString();
602 }
603
604 WebString WebRemoteFrameImpl::layoutTreeAsText(LayoutAsTextControls toShow) cons t
605 {
606 ASSERT_NOT_REACHED();
607 return WebString();
608 }
609
610 WebString WebRemoteFrameImpl::markerTextForListItem(const WebElement&) const
611 {
612 ASSERT_NOT_REACHED();
613 return WebString();
614 }
615
616 WebRect WebRemoteFrameImpl::selectionBoundsRect() const 592 WebRect WebRemoteFrameImpl::selectionBoundsRect() const
617 { 593 {
618 ASSERT_NOT_REACHED(); 594 ASSERT_NOT_REACHED();
619 return WebRect(); 595 return WebRect();
620 } 596 }
621 597
622 bool WebRemoteFrameImpl::selectionStartHasSpellingMarkerFor(int from, int length ) const 598 bool WebRemoteFrameImpl::selectionStartHasSpellingMarkerFor(int from, int length ) const
623 { 599 {
624 ASSERT_NOT_REACHED(); 600 ASSERT_NOT_REACHED();
625 return false; 601 return false;
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 : WebRemoteFrame(scope) 735 : WebRemoteFrame(scope)
760 , m_frameClient(RemoteFrameClientImpl::create(this)) 736 , m_frameClient(RemoteFrameClientImpl::create(this))
761 , m_client(client) 737 , m_client(client)
762 #if ENABLE(OILPAN) 738 #if ENABLE(OILPAN)
763 , m_selfKeepAlive(this) 739 , m_selfKeepAlive(this)
764 #endif 740 #endif
765 { 741 {
766 } 742 }
767 743
768 } // namespace blink 744 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.h ('k') | third_party/WebKit/Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698