| Index: Source/web/DevToolsEmulator.h
|
| diff --git a/Source/web/DevToolsEmulator.h b/Source/web/DevToolsEmulator.h
|
| index 94f03155fd3e9bc034c3eece21e6da331a8a78c0..0180b340359353ae501eb5d429e1fe01f709ccaf 100644
|
| --- a/Source/web/DevToolsEmulator.h
|
| +++ b/Source/web/DevToolsEmulator.h
|
| @@ -11,7 +11,6 @@
|
| namespace blink {
|
|
|
| class IntPoint;
|
| -class WebDevToolsAgentImpl;
|
| class WebInputEvent;
|
| class WebViewImpl;
|
|
|
| @@ -22,19 +21,12 @@ public:
|
| explicit DevToolsEmulator(WebViewImpl*);
|
| ~DevToolsEmulator();
|
|
|
| - // FIXME(dgozman): remove this after reversing emulation flow.
|
| - void setDevToolsAgent(WebDevToolsAgentImpl*);
|
| -
|
| // Settings overrides.
|
| void setTextAutosizingEnabled(bool);
|
| void setDeviceScaleAdjustment(float);
|
| void setPreferCompositingToLCDTextEnabled(bool);
|
| void setUseMobileViewportStyle(bool);
|
|
|
| - // FIXME(dgozman): remove this after reversing emulation flow.
|
| - void setDeviceMetricsOverride(int width, int height, float deviceScaleFactor, bool mobile, bool fitWindow, float scale, float offsetX, float offsetY);
|
| - void clearDeviceMetricsOverride();
|
| -
|
| // Emulation.
|
| void enableDeviceEmulation(const WebDeviceEmulationParams&);
|
| void disableDeviceEmulation();
|
| @@ -46,12 +38,7 @@ private:
|
| void enableMobileEmulation();
|
| void disableMobileEmulation();
|
|
|
| - // FIXME(dgozman): remove this after reversing emulation flow.
|
| - void enableDeviceEmulationInner(const WebDeviceEmulationParams&);
|
| - void disableDeviceEmulationInner();
|
| -
|
| WebViewImpl* m_webViewImpl;
|
| - WebDevToolsAgentImpl* m_devToolsAgent;
|
| bool m_deviceMetricsEnabled;
|
| bool m_emulateMobileEnabled;
|
| bool m_originalViewportEnabled;
|
| @@ -70,9 +57,6 @@ private:
|
| int m_originalMaxTouchPoints;
|
| OwnPtr<IntPoint> m_lastPinchAnchorCss;
|
| OwnPtr<IntPoint> m_lastPinchAnchorDip;
|
| -
|
| - // FIXME(dgozman): remove this after reversing emulation flow.
|
| - bool m_ignoreSetOverrides;
|
| };
|
|
|
| } // namespace blink
|
|
|