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

Unified Diff: third_party/WebKit/Source/core/loader/EmptyClients.h

Issue 2723993002: Rename platform/Widget to platform/FrameViewBase in core. (Closed)
Patch Set: Created 3 years, 10 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
Index: third_party/WebKit/Source/core/loader/EmptyClients.h
diff --git a/third_party/WebKit/Source/core/loader/EmptyClients.h b/third_party/WebKit/Source/core/loader/EmptyClients.h
index 71531eadf1064087023a61f18596719383a22880..354c8ebf7e5db455927f439e4a61662ba1e0f39e 100644
--- a/third_party/WebKit/Source/core/loader/EmptyClients.h
+++ b/third_party/WebKit/Source/core/loader/EmptyClients.h
@@ -168,9 +168,10 @@ class CORE_EXPORT EmptyChromeClient : public ChromeClient {
bool tabsToLinks() override { return false; }
void invalidateRect(const IntRect&) override {}
- void scheduleAnimation(Widget*) override {}
+ void scheduleAnimation(FrameViewBase*) override {}
- IntRect viewportToScreen(const IntRect& r, const Widget*) const override {
+ IntRect viewportToScreen(const IntRect& r,
+ const FrameViewBase*) const override {
return r;
}
float windowToViewportScalar(const float s) const override { return s; }
@@ -322,13 +323,13 @@ class CORE_EXPORT EmptyLocalFrameClient : public LocalFrameClient {
LocalFrame* createFrame(const FrameLoadRequest&,
const AtomicString&,
HTMLFrameOwnerElement*) override;
- Widget* createPlugin(HTMLPlugInElement*,
- const KURL&,
- const Vector<String>&,
- const Vector<String>&,
- const String&,
- bool,
- DetachedPluginPolicy) override;
+ FrameViewBase* createPlugin(HTMLPlugInElement*,
+ const KURL&,
+ const Vector<String>&,
+ const Vector<String>&,
+ const String&,
+ bool,
+ DetachedPluginPolicy) override;
bool canCreatePluginWithoutRenderer(const String& mimeType) const override {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698