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

Unified Diff: public/web/WebFrame.h

Issue 241303002: Rename WebFrameImpl to WebLocalFrameImpl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix Mac too Created 6 years, 8 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/web.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebFrame.h
diff --git a/public/web/WebFrame.h b/public/web/WebFrame.h
index df277a89a1ef86005d4dea3161b4a3b96717093c..b3beb570103e165caee80c04e3aa22de4f59d1cb 100644
--- a/public/web/WebFrame.h
+++ b/public/web/WebFrame.h
@@ -67,6 +67,7 @@ class WebLocalFrame;
class WebPerformance;
class WebPermissionClient;
class WebRange;
+class WebRemoteFrame;
class WebSecurityOrigin;
class WebSharedWorkerRepositoryClient;
class WebString;
@@ -106,7 +107,10 @@ public:
// Returns the number of live WebFrame objects, used for leak checking.
BLINK_EXPORT static int instanceCount();
+ virtual bool isWebLocalFrame() const = 0;
virtual WebLocalFrame* toWebLocalFrame() = 0;
+ virtual bool isWebRemoteFrame() const = 0;
+ virtual WebRemoteFrame* toWebRemoteFrame() = 0;
// This method closes and deletes the WebFrame.
virtual void close() = 0;
« no previous file with comments | « Source/web/web.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698