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

Unified Diff: third_party/WebKit/Source/platform/scroll/Scrollbar.h

Issue 2845583002: Remove FrameViewBase as base class of RemoteFrameView. (Closed)
Patch Set: fix scrollbar inactive Created 3 years, 8 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/platform/scroll/Scrollbar.h
diff --git a/third_party/WebKit/Source/platform/scroll/Scrollbar.h b/third_party/WebKit/Source/platform/scroll/Scrollbar.h
index ecb2b7bc61dcf1aeb7f368d621c934cff1c82b5d..b9541884a4334ca91399a4411cc6efe9dd72680f 100644
--- a/third_party/WebKit/Source/platform/scroll/Scrollbar.h
+++ b/third_party/WebKit/Source/platform/scroll/Scrollbar.h
@@ -26,7 +26,6 @@
#ifndef Scrollbar_h
#define Scrollbar_h
-#include "platform/FrameViewBase.h"
#include "platform/Timer.h"
#include "platform/graphics/paint/DisplayItem.h"
#include "platform/heap/Handle.h"
@@ -37,6 +36,7 @@
namespace blink {
class CullRect;
+class FrameViewBase;
class GraphicsContext;
class IntRect;
class PlatformChromeClient;
@@ -155,8 +155,8 @@ class PLATFORM_EXPORT Scrollbar : public GarbageCollectedFinalized<Scrollbar>,
ScrollbarTheme& GetTheme() const { return theme_; }
- IntRect ConvertToContainingFrameViewBase(const IntRect&) const;
- IntPoint ConvertFromContainingFrameViewBase(const IntPoint&) const;
+ IntRect ConvertToContainingFrameView(const IntRect&) const;
+ IntPoint ConvertFromContainingFrameView(const IntPoint&) const;
void MoveThumb(int pos, bool dragging_document = false);

Powered by Google App Engine
This is Rietveld 408576698