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

Unified Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.h

Issue 2873213003: Move WebFrame to use WebLocalFrameBase instead of WebLocalFrameImpl. (Closed)
Patch Set: rebase Created 3 years, 7 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 | « third_party/WebKit/Source/web/WebFrame.cpp ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebLocalFrameImpl.h
diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.h b/third_party/WebKit/Source/web/WebLocalFrameImpl.h
index d9644d7343aa10fc830a5d8ea80da16578c5d2e4..d0afe6d385fa888414a3558c82e273420927c6b2 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.h
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.h
@@ -84,8 +84,7 @@ class WebVector;
// Implementation of WebFrame, note that this is a reference counted object.
class WEB_EXPORT WebLocalFrameImpl final
- : public GarbageCollectedFinalized<WebLocalFrameImpl>,
- NON_EXPORTED_BASE(public WebLocalFrameBase) {
+ : NON_EXPORTED_BASE(public WebLocalFrameBase) {
public:
// WebFrame methods:
// TODO(dcheng): Fix sorting here; a number of method have been moved to
@@ -319,7 +318,9 @@ class WEB_EXPORT WebLocalFrameImpl final
WebString& clip_text,
WebString& clip_html) override;
- void InitializeCoreFrame(Page&, FrameOwner*, const AtomicString& name);
+ void InitializeCoreFrame(Page&,
+ FrameOwner*,
+ const AtomicString& name) override;
LocalFrame* GetFrame() const override { return frame_.Get(); }
void WillBeDetached();
@@ -435,7 +436,7 @@ class WEB_EXPORT WebLocalFrameImpl final
std::unique_ptr<WebURLLoader> CreateURLLoader() override;
- DECLARE_TRACE();
+ DECLARE_VIRTUAL_TRACE();
private:
friend class LocalFrameClientImpl;
« no previous file with comments | « third_party/WebKit/Source/web/WebFrame.cpp ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698