| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 virtual void setContinuousPaintingEnabled(ErrorString*, bool enabled); | 108 virtual void setContinuousPaintingEnabled(ErrorString*, bool enabled); |
| 109 virtual void setShowScrollBottleneckRects(ErrorString*, bool show); | 109 virtual void setShowScrollBottleneckRects(ErrorString*, bool show); |
| 110 virtual void getScriptExecutionStatus(ErrorString*, PageCommandHandler::Resu
lt::Enum*); | 110 virtual void getScriptExecutionStatus(ErrorString*, PageCommandHandler::Resu
lt::Enum*); |
| 111 virtual void setScriptExecutionDisabled(ErrorString*, bool); | 111 virtual void setScriptExecutionDisabled(ErrorString*, bool); |
| 112 virtual void setGeolocationOverride(ErrorString*, const double*, const doubl
e*, const double*); | 112 virtual void setGeolocationOverride(ErrorString*, const double*, const doubl
e*, const double*); |
| 113 virtual void clearGeolocationOverride(ErrorString*); | 113 virtual void clearGeolocationOverride(ErrorString*); |
| 114 virtual void setDeviceOrientationOverride(ErrorString*, double, double, doub
le); | 114 virtual void setDeviceOrientationOverride(ErrorString*, double, double, doub
le); |
| 115 virtual void clearDeviceOrientationOverride(ErrorString*); | 115 virtual void clearDeviceOrientationOverride(ErrorString*); |
| 116 virtual void setTouchEmulationEnabled(ErrorString*, bool); | 116 virtual void setTouchEmulationEnabled(ErrorString*, bool); |
| 117 virtual void setEmulatedMedia(ErrorString*, const String&); | 117 virtual void setEmulatedMedia(ErrorString*, const String&); |
| 118 virtual void setTextAutosizingOverride(ErrorString*, bool); |
| 119 virtual void clearTextAutosizingOverride(ErrorString*); |
| 118 virtual void setForceCompositingMode(ErrorString*, bool force); | 120 virtual void setForceCompositingMode(ErrorString*, bool force); |
| 119 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>&); | 121 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>&); |
| 120 virtual void startScreencast(ErrorString*, const String* format, const int*
quality, const int* maxWidth, const int* maxHeight); | 122 virtual void startScreencast(ErrorString*, const String* format, const int*
quality, const int* maxWidth, const int* maxHeight); |
| 121 virtual void stopScreencast(ErrorString*); | 123 virtual void stopScreencast(ErrorString*); |
| 122 virtual void handleJavaScriptDialog(ErrorString*, bool accept, const String*
promptText); | 124 virtual void handleJavaScriptDialog(ErrorString*, bool accept, const String*
promptText); |
| 123 virtual void setShowViewportSizeOnResize(ErrorString*, bool show, const bool
* showGrid); | 125 virtual void setShowViewportSizeOnResize(ErrorString*, bool show, const bool
* showGrid); |
| 124 | 126 |
| 125 // Geolocation override helpers. | 127 // Geolocation override helpers. |
| 126 GeolocationPosition* overrideGeolocationPosition(GeolocationPosition*); | 128 GeolocationPosition* overrideGeolocationPosition(GeolocationPosition*); |
| 127 | 129 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 RefPtr<GeolocationPosition> m_geolocationPosition; | 212 RefPtr<GeolocationPosition> m_geolocationPosition; |
| 211 RefPtr<GeolocationPosition> m_platformGeolocationPosition; | 213 RefPtr<GeolocationPosition> m_platformGeolocationPosition; |
| 212 RefPtr<DeviceOrientationData> m_deviceOrientation; | 214 RefPtr<DeviceOrientationData> m_deviceOrientation; |
| 213 }; | 215 }; |
| 214 | 216 |
| 215 | 217 |
| 216 } // namespace WebCore | 218 } // namespace WebCore |
| 217 | 219 |
| 218 | 220 |
| 219 #endif // !defined(InspectorPagerAgent_h) | 221 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |