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

Unified Diff: third_party/WebKit/Source/web/ColorChooserUIController.cpp

Issue 2877363002: Move more classes over to use WebLocalFrameBase instead of WebLocalFrameImpl. (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/ExternalPopupMenu.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/ColorChooserUIController.cpp
diff --git a/third_party/WebKit/Source/web/ColorChooserUIController.cpp b/third_party/WebKit/Source/web/ColorChooserUIController.cpp
index c8dd5bd13c2c4716c7162e7c542c62619f540155..29abd5d44065d14c5e9397f9e338a0bcabc6b55d 100644
--- a/third_party/WebKit/Source/web/ColorChooserUIController.cpp
+++ b/third_party/WebKit/Source/web/ColorChooserUIController.cpp
@@ -25,6 +25,7 @@
#include "web/ColorChooserUIController.h"
+#include "core/frame/WebLocalFrameBase.h"
#include "core/html/forms/ColorChooserClient.h"
#include "platform/graphics/Color.h"
#include "platform/wtf/PtrUtil.h"
@@ -32,7 +33,6 @@
#include "public/web/WebColorChooser.h"
#include "public/web/WebColorSuggestion.h"
#include "public/web/WebFrameClient.h"
-#include "web/WebLocalFrameImpl.h"
namespace blink {
@@ -83,7 +83,7 @@ void ColorChooserUIController::DidEndChooser() {
void ColorChooserUIController::OpenColorChooser() {
DCHECK(!chooser_);
- WebLocalFrameImpl* frame = WebLocalFrameImpl::FromFrame(frame_);
+ WebLocalFrameBase* frame = WebLocalFrameBase::FromFrame(frame_);
WebFrameClient* web_frame_client = frame->Client();
if (!web_frame_client)
return;
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/ExternalPopupMenu.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698