OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 virtual void clearDeviceOrientationOverride(ErrorString*); | 114 virtual void clearDeviceOrientationOverride(ErrorString*); |
115 virtual void setTouchEmulationEnabled(ErrorString*, bool); | 115 virtual void setTouchEmulationEnabled(ErrorString*, bool); |
116 virtual void setEmulatedMedia(ErrorString*, const String&); | 116 virtual void setEmulatedMedia(ErrorString*, const String&); |
117 virtual void setForceCompositingMode(ErrorString*, bool force); | 117 virtual void setForceCompositingMode(ErrorString*, bool force); |
118 virtual void captureScreenshot(ErrorString*, const String* format, const int
* quality, const int* maxWidth, const int* maxHeight, String* data, double* devi
ceScaleFactor, double* pageScaleFactor, RefPtr<TypeBuilder::DOM::Rect>&); | 118 virtual void captureScreenshot(ErrorString*, const String* format, const int
* quality, const int* maxWidth, const int* maxHeight, String* data, double* devi
ceScaleFactor, double* pageScaleFactor, RefPtr<TypeBuilder::DOM::Rect>&); |
119 virtual void canScreencast(ErrorString*, bool*); | 119 virtual void canScreencast(ErrorString*, bool*); |
120 virtual void startScreencast(ErrorString*, const String* format, const int*
quality, const int* maxWidth, const int* maxHeight); | 120 virtual void startScreencast(ErrorString*, const String* format, const int*
quality, const int* maxWidth, const int* maxHeight); |
121 virtual void stopScreencast(ErrorString*); | 121 virtual void stopScreencast(ErrorString*); |
122 virtual void handleJavaScriptDialog(ErrorString*, bool accept, const String*
promptText); | 122 virtual void handleJavaScriptDialog(ErrorString*, bool accept, const String*
promptText); |
123 virtual void setShowViewportSizeOnResize(ErrorString*, bool show, const bool
* showGrid); | 123 virtual void setShowViewportSizeOnResize(ErrorString*, bool show, const bool
* showGrid); |
| 124 virtual void queryUsageAndQuota(ErrorString*, const String&, RefPtr<TypeBuil
der::Page::Quota>&, RefPtr<TypeBuilder::Page::Usage>&); |
124 | 125 |
125 // Geolocation override helper. | 126 // Geolocation override helper. |
126 GeolocationPosition* overrideGeolocationPosition(GeolocationPosition*); | 127 GeolocationPosition* overrideGeolocationPosition(GeolocationPosition*); |
127 | 128 |
128 // DeviceOrientation helper. | 129 // DeviceOrientation helper. |
129 DeviceOrientationData* overrideDeviceOrientation(DeviceOrientationData*); | 130 DeviceOrientationData* overrideDeviceOrientation(DeviceOrientationData*); |
130 | 131 |
131 // Text autosizing helper. | 132 // Text autosizing helper. |
132 bool overrideTextAutosizing(bool); | 133 bool overrideTextAutosizing(bool); |
133 | 134 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 RefPtr<GeolocationPosition> m_geolocationPosition; | 212 RefPtr<GeolocationPosition> m_geolocationPosition; |
212 RefPtr<GeolocationPosition> m_platformGeolocationPosition; | 213 RefPtr<GeolocationPosition> m_platformGeolocationPosition; |
213 RefPtr<DeviceOrientationData> m_deviceOrientation; | 214 RefPtr<DeviceOrientationData> m_deviceOrientation; |
214 }; | 215 }; |
215 | 216 |
216 | 217 |
217 } // namespace WebCore | 218 } // namespace WebCore |
218 | 219 |
219 | 220 |
220 #endif // !defined(InspectorPagerAgent_h) | 221 #endif // !defined(InspectorPagerAgent_h) |
OLD | NEW |