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

Unified Diff: Source/web/WebLocalFrameImpl.h

Issue 595713002: Move local frame-only methods out of WebFrame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: One more 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WebFrame.cpp ('k') | Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebLocalFrameImpl.h
diff --git a/Source/web/WebLocalFrameImpl.h b/Source/web/WebLocalFrameImpl.h
index 4a2b5f711502e758428c43bdc9e0dc107c5b6bd8..cd7347497cedb0b5c3da9360187b587e9514bdeb 100644
--- a/Source/web/WebLocalFrameImpl.h
+++ b/Source/web/WebLocalFrameImpl.h
@@ -137,9 +137,6 @@ public:
virtual void loadHTMLString(
const WebData& html, const WebURL& baseURL, const WebURL& unreachableURL,
bool replace) OVERRIDE;
- virtual void sendPings(const WebNode& linkNode, const WebURL& destinationURL) OVERRIDE;
- virtual bool isLoading() const OVERRIDE;
- virtual bool isResourceLoadInProgress() const OVERRIDE;
virtual void stopLoading() OVERRIDE;
virtual WebDataSource* provisionalDataSource() const OVERRIDE;
virtual WebDataSource* dataSource() const OVERRIDE;
@@ -177,7 +174,6 @@ public:
virtual bool setEditableSelectionOffsets(int start, int end) OVERRIDE;
virtual bool setCompositionFromExistingText(int compositionStart, int compositionEnd, const WebVector<WebCompositionUnderline>& underlines) OVERRIDE;
virtual void extendSelectionAndDelete(int before, int after) OVERRIDE;
- virtual void navigateToSandboxedMarkup(const WebData& markup) OVERRIDE;
virtual void setCaretVisible(bool) OVERRIDE;
virtual int printBegin(const WebPrintParams&, const WebNode& constrainToNode) OVERRIDE;
virtual float printPage(int pageToPrint, WebCanvas*) OVERRIDE;
@@ -212,8 +208,6 @@ public:
virtual int selectNearestFindMatch(const WebFloatPoint&, WebRect* selectionRect) OVERRIDE;
virtual void setTickmarks(const WebVector<WebRect>&) OVERRIDE;
- virtual void sendOrientationChangeEvent() OVERRIDE;
-
virtual void dispatchMessageEventWithOriginCheck(
const WebSecurityOrigin& intendedTargetOrigin,
const WebDOMEvent&) OVERRIDE;
@@ -228,7 +222,14 @@ public:
virtual WebString layerTreeAsText(bool showDebugInfo = false) const OVERRIDE;
// WebLocalFrame methods:
+ virtual void sendPings(const WebNode& linkNode, const WebURL& destinationURL) OVERRIDE;
+ virtual bool isLoading() const OVERRIDE;
+ virtual bool isResourceLoadInProgress() const OVERRIDE;
virtual void addStyleSheetByURL(const WebString& url) OVERRIDE;
+ virtual void navigateToSandboxedMarkup(const WebData& markup) OVERRIDE;
+ virtual void sendOrientationChangeEvent() OVERRIDE;
+ virtual v8::Handle<v8::Value> executeScriptAndReturnValueForTests(
+ const WebScriptSource&) OVERRIDE;
void willDetachParent();
« no previous file with comments | « Source/web/WebFrame.cpp ('k') | Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698