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

Unified Diff: sky/engine/core/frame/FrameHost.h

Issue 681583002: Remove pinch viewports. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: upload synced patch Created 6 years, 2 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: sky/engine/core/frame/FrameHost.h
diff --git a/sky/engine/core/frame/FrameHost.h b/sky/engine/core/frame/FrameHost.h
index 9f2cc527afc5232507d5e5e608b430b3bfe03d39..96f6a824568ce9d709a76780ba28f5ed814d3ef6 100644
--- a/sky/engine/core/frame/FrameHost.h
+++ b/sky/engine/core/frame/FrameHost.h
@@ -31,7 +31,6 @@
#ifndef FrameHost_h
#define FrameHost_h
-#include "core/frame/PinchViewport.h"
#include "platform/heap/Handle.h"
#include "wtf/FastAllocBase.h"
#include "wtf/Noncopyable.h"
@@ -43,7 +42,6 @@ namespace blink {
class Chrome;
class EventHandlerRegistry;
class Page;
-class PinchViewport;
class Settings;
class UseCounter;
class Visitor;
@@ -74,7 +72,6 @@ public:
// This value does not account for Page zoom, use LocalFrame::devicePixelRatio instead.
float deviceScaleFactor() const;
- PinchViewport& pinchViewport() const;
EventHandlerRegistry& eventHandlerRegistry() const;
void trace(Visitor*);
@@ -83,7 +80,6 @@ private:
explicit FrameHost(Page&);
RawPtrWillBeMember<Page> m_page;
- const OwnPtr<PinchViewport> m_pinchViewport;
const OwnPtrWillBeMember<EventHandlerRegistry> m_eventHandlerRegistry;
};

Powered by Google App Engine
This is Rietveld 408576698