| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 virtual void navigate(ErrorString*, const String& url); | 94 virtual void navigate(ErrorString*, const String& url); |
| 95 virtual void getNavigationHistory(ErrorString*, int*, RefPtr<TypeBuilder::Ar
ray<TypeBuilder::Page::NavigationEntry> >&); | 95 virtual void getNavigationHistory(ErrorString*, int*, RefPtr<TypeBuilder::Ar
ray<TypeBuilder::Page::NavigationEntry> >&); |
| 96 virtual void navigateToHistoryEntry(ErrorString*, int); | 96 virtual void navigateToHistoryEntry(ErrorString*, int); |
| 97 virtual void getCookies(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder:
:Page::Cookie> >& cookies, WTF::String* cookiesString); | 97 virtual void getCookies(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder:
:Page::Cookie> >& cookies, WTF::String* cookiesString); |
| 98 virtual void deleteCookie(ErrorString*, const String& cookieName, const Stri
ng& url); | 98 virtual void deleteCookie(ErrorString*, const String& cookieName, const Stri
ng& url); |
| 99 virtual void getResourceTree(ErrorString*, RefPtr<TypeBuilder::Page::FrameRe
sourceTree>&); | 99 virtual void getResourceTree(ErrorString*, RefPtr<TypeBuilder::Page::FrameRe
sourceTree>&); |
| 100 virtual void getResourceContent(ErrorString*, const String& frameId, const S
tring& url, String* content, bool* base64Encoded); | 100 virtual void getResourceContent(ErrorString*, const String& frameId, const S
tring& url, String* content, bool* base64Encoded); |
| 101 virtual void searchInResource(ErrorString*, const String& frameId, const Str
ing& url, const String& query, const bool* optionalCaseSensitive, const bool* op
tionalIsRegex, RefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch> >&); | 101 virtual void searchInResource(ErrorString*, const String& frameId, const Str
ing& url, const String& query, const bool* optionalCaseSensitive, const bool* op
tionalIsRegex, RefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch> >&); |
| 102 virtual void searchInResources(ErrorString*, const String&, const bool* case
Sensitive, const bool* isRegex, RefPtr<TypeBuilder::Array<TypeBuilder::Page::Sea
rchResult> >&); | 102 virtual void searchInResources(ErrorString*, const String&, const bool* case
Sensitive, const bool* isRegex, RefPtr<TypeBuilder::Array<TypeBuilder::Page::Sea
rchResult> >&); |
| 103 virtual void setDocumentContent(ErrorString*, const String& frameId, const S
tring& html); | 103 virtual void setDocumentContent(ErrorString*, const String& frameId, const S
tring& html); |
| 104 virtual void setDeviceMetricsOverride(ErrorString*, int width, int height, d
ouble deviceScaleFactor, bool fitWindow); | 104 virtual void setDeviceMetricsOverride(ErrorString*, int width, int height, d
ouble deviceScaleFactor, bool fitWindow, int textAutosizingOverride); |
| 105 virtual void setShowPaintRects(ErrorString*, bool show); | 105 virtual void setShowPaintRects(ErrorString*, bool show); |
| 106 virtual void setShowDebugBorders(ErrorString*, bool show); | 106 virtual void setShowDebugBorders(ErrorString*, bool show); |
| 107 virtual void setShowFPSCounter(ErrorString*, bool show); | 107 virtual void setShowFPSCounter(ErrorString*, bool show); |
| 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); |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 RefPtr<GeolocationPosition> m_geolocationPosition; | 209 RefPtr<GeolocationPosition> m_geolocationPosition; |
| 210 RefPtr<GeolocationPosition> m_platformGeolocationPosition; | 210 RefPtr<GeolocationPosition> m_platformGeolocationPosition; |
| 211 RefPtr<DeviceOrientationData> m_deviceOrientation; | 211 RefPtr<DeviceOrientationData> m_deviceOrientation; |
| 212 }; | 212 }; |
| 213 | 213 |
| 214 | 214 |
| 215 } // namespace WebCore | 215 } // namespace WebCore |
| 216 | 216 |
| 217 | 217 |
| 218 #endif // !defined(InspectorPagerAgent_h) | 218 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |