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

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

Issue 2919593004: Remove dependency of ColorChooserPopupUIController on ChromeClientImpl (Closed)
Patch Set: 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 | « no previous file | third_party/WebKit/Source/web/ColorChooserPopupUIController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/ColorChooserPopupUIController.h
diff --git a/third_party/WebKit/Source/web/ColorChooserPopupUIController.h b/third_party/WebKit/Source/web/ColorChooserPopupUIController.h
index 54896f602245a18992244f64632a18c724312159..e7224a32eb08a11719b8d17e87e04cbc9dd65641 100644
--- a/third_party/WebKit/Source/web/ColorChooserPopupUIController.h
+++ b/third_party/WebKit/Source/web/ColorChooserPopupUIController.h
@@ -31,7 +31,7 @@
namespace blink {
-class ChromeClientImpl;
+class ChromeClient;
class ColorChooserClient;
class PagePopup;
@@ -41,7 +41,7 @@ class ColorChooserPopupUIController final : public ColorChooserUIController,
public:
static ColorChooserPopupUIController* Create(LocalFrame* frame,
- ChromeClientImpl* chrome_client,
+ ChromeClient* chrome_client,
ColorChooserClient* client) {
return new ColorChooserPopupUIController(frame, chrome_client, client);
}
@@ -68,13 +68,13 @@ class ColorChooserPopupUIController final : public ColorChooserUIController,
private:
ColorChooserPopupUIController(LocalFrame*,
- ChromeClientImpl*,
+ ChromeClient*,
ColorChooserClient*);
void OpenPopup();
void Dispose();
- Member<ChromeClientImpl> chrome_client_;
+ Member<ChromeClient> chrome_client_;
PagePopup* popup_;
Locale& locale_;
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/ColorChooserPopupUIController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698