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

Unified Diff: Source/web/ChromeClientImpl.h

Issue 1291903003: Oilpan: Move ChromeClient classes into Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix a raw reference in InspectorOverlayImpl.cpp. Created 5 years, 4 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/platform/HostWindow.h ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ChromeClientImpl.h
diff --git a/Source/web/ChromeClientImpl.h b/Source/web/ChromeClientImpl.h
index c134f1d83f3ad1ab7b0c134d3f96a01774417128..0de8d1247d366b0cb23b183f6c0787147c9ebcaf 100644
--- a/Source/web/ChromeClientImpl.h
+++ b/Source/web/ChromeClientImpl.h
@@ -47,7 +47,7 @@ struct WebCursorInfo;
// Handles window-level notifications from core on behalf of a WebView.
class ChromeClientImpl final : public ChromeClient {
public:
- explicit ChromeClientImpl(WebViewImpl*);
+ static PassOwnPtrWillBeRawPtr<ChromeClientImpl> create(WebViewImpl*);
~ChromeClientImpl() override;
void* webView() const override;
@@ -170,6 +170,8 @@ public:
FloatSize elasticOverscroll() const override;
private:
+ explicit ChromeClientImpl(WebViewImpl*);
+
bool isChromeClientImpl() const override { return true; }
void registerPopupOpeningObserver(PopupOpeningObserver*) override;
void unregisterPopupOpeningObserver(PopupOpeningObserver*) override;
« no previous file with comments | « Source/platform/HostWindow.h ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698