| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 void resetScrollAndPageScaleFactor() override; | 120 void resetScrollAndPageScaleFactor() override; |
| 121 float minimumPageScaleFactor() override; | 121 float minimumPageScaleFactor() override; |
| 122 float maximumPageScaleFactor() override; | 122 float maximumPageScaleFactor() override; |
| 123 void setPageScaleFactor(float) override; | 123 void setPageScaleFactor(float) override; |
| 124 bool overridesShowPaintRects() override; | 124 bool overridesShowPaintRects() override; |
| 125 void setShowPaintRects(bool) override; | 125 void setShowPaintRects(bool) override; |
| 126 void setShowDebugBorders(bool) override; | 126 void setShowDebugBorders(bool) override; |
| 127 void setShowFPSCounter(bool) override; | 127 void setShowFPSCounter(bool) override; |
| 128 void setContinuousPaintingEnabled(bool) override; | 128 void setContinuousPaintingEnabled(bool) override; |
| 129 void setShowScrollBottleneckRects(bool) override; | 129 void setShowScrollBottleneckRects(bool) override; |
| 130 void setDeviceMetricsOverride(int width, int height, float deviceScaleFactor
, bool mobile, bool fitWindow, float scale, float offsetX, float offsetY) overri
de; | |
| 131 void clearDeviceMetricsOverride() override; | |
| 132 void setTouchEventEmulationEnabled(bool) override; | 130 void setTouchEventEmulationEnabled(bool) override; |
| 133 | 131 |
| 134 // InspectorTracingAgent::Client implementation. | 132 // InspectorTracingAgent::Client implementation. |
| 135 void enableTracing(const WTF::String& categoryFilter) override; | 133 void enableTracing(const WTF::String& categoryFilter) override; |
| 136 void disableTracing() override; | 134 void disableTracing() override; |
| 137 | 135 |
| 138 // PageRuntimeAgent::Client implementation. | 136 // PageRuntimeAgent::Client implementation. |
| 139 void resumeStartup() override; | 137 void resumeStartup() override; |
| 140 | 138 |
| 141 // InspectorFrontendChannel implementation. | 139 // InspectorFrontendChannel implementation. |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 typedef Vector<RefPtr<JSONObject> > NotificationQueue; | 184 typedef Vector<RefPtr<JSONObject> > NotificationQueue; |
| 187 NotificationQueue m_notificationQueue; | 185 NotificationQueue m_notificationQueue; |
| 188 String m_stateCookie; | 186 String m_stateCookie; |
| 189 | 187 |
| 190 friend class DebuggerTask; | 188 friend class DebuggerTask; |
| 191 }; | 189 }; |
| 192 | 190 |
| 193 } // namespace blink | 191 } // namespace blink |
| 194 | 192 |
| 195 #endif | 193 #endif |
| OLD | NEW |