| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 virtual void getCookies(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder:
:Page::Cookie> >& cookies) OVERRIDE; | 104 virtual void getCookies(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder:
:Page::Cookie> >& cookies) OVERRIDE; |
| 105 virtual void deleteCookie(ErrorString*, const String& cookieName, const Stri
ng& url) OVERRIDE; | 105 virtual void deleteCookie(ErrorString*, const String& cookieName, const Stri
ng& url) OVERRIDE; |
| 106 virtual void getResourceTree(ErrorString*, RefPtr<TypeBuilder::Page::FrameRe
sourceTree>&) OVERRIDE; | 106 virtual void getResourceTree(ErrorString*, RefPtr<TypeBuilder::Page::FrameRe
sourceTree>&) OVERRIDE; |
| 107 virtual void getResourceContent(ErrorString*, const String& frameId, const S
tring& url, PassRefPtr<GetResourceContentCallback>) OVERRIDE; | 107 virtual void getResourceContent(ErrorString*, const String& frameId, const S
tring& url, PassRefPtr<GetResourceContentCallback>) OVERRIDE; |
| 108 virtual void hasTouchInputs(ErrorString*, bool* result) OVERRIDE; | 108 virtual void hasTouchInputs(ErrorString*, bool* result) OVERRIDE; |
| 109 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> >&) OVE
RRIDE; | 109 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> >&) OVE
RRIDE; |
| 110 virtual void setDocumentContent(ErrorString*, const String& frameId, const S
tring& html) OVERRIDE; | 110 virtual void setDocumentContent(ErrorString*, const String& frameId, const S
tring& html) OVERRIDE; |
| 111 virtual void setDeviceMetricsOverride(ErrorString*, int width, int height, d
ouble deviceScaleFactor, bool emulateViewport, bool fitWindow, const double* opt
ionalScale, const double* optionalOffsetX, const double* optionalOffsetY) OVERRI
DE; | 111 virtual void setDeviceMetricsOverride(ErrorString*, int width, int height, d
ouble deviceScaleFactor, bool emulateViewport, bool fitWindow, const double* opt
ionalScale, const double* optionalOffsetX, const double* optionalOffsetY) OVERRI
DE; |
| 112 virtual void clearDeviceMetricsOverride(ErrorString*) OVERRIDE; | 112 virtual void clearDeviceMetricsOverride(ErrorString*) OVERRIDE; |
| 113 virtual void resetScrollAndPageScaleFactor(ErrorString*) OVERRIDE; | 113 virtual void resetScrollAndPageScaleFactor(ErrorString*) OVERRIDE; |
| 114 virtual void setViewportChangedEventEnabled(ErrorString*, bool enabled) OVER
RIDE; |
| 114 virtual void setShowPaintRects(ErrorString*, bool show) OVERRIDE; | 115 virtual void setShowPaintRects(ErrorString*, bool show) OVERRIDE; |
| 115 virtual void setShowDebugBorders(ErrorString*, bool show) OVERRIDE; | 116 virtual void setShowDebugBorders(ErrorString*, bool show) OVERRIDE; |
| 116 virtual void setShowFPSCounter(ErrorString*, bool show) OVERRIDE; | 117 virtual void setShowFPSCounter(ErrorString*, bool show) OVERRIDE; |
| 117 virtual void setContinuousPaintingEnabled(ErrorString*, bool enabled) OVERRI
DE; | 118 virtual void setContinuousPaintingEnabled(ErrorString*, bool enabled) OVERRI
DE; |
| 118 virtual void setShowScrollBottleneckRects(ErrorString*, bool show) OVERRIDE; | 119 virtual void setShowScrollBottleneckRects(ErrorString*, bool show) OVERRIDE; |
| 119 virtual void getScriptExecutionStatus(ErrorString*, PageCommandHandler::Resu
lt::Enum*) OVERRIDE; | 120 virtual void getScriptExecutionStatus(ErrorString*, PageCommandHandler::Resu
lt::Enum*) OVERRIDE; |
| 120 virtual void setScriptExecutionDisabled(ErrorString*, bool) OVERRIDE; | 121 virtual void setScriptExecutionDisabled(ErrorString*, bool) OVERRIDE; |
| 121 virtual void setTouchEmulationEnabled(ErrorString*, bool) OVERRIDE; | 122 virtual void setTouchEmulationEnabled(ErrorString*, bool) OVERRIDE; |
| 122 virtual void setEmulatedMedia(ErrorString*, const String&) OVERRIDE; | 123 virtual void setEmulatedMedia(ErrorString*, const String&) OVERRIDE; |
| 123 virtual void setShowViewportSizeOnResize(ErrorString*, bool show, const bool
* showGrid) OVERRIDE; | 124 virtual void setShowViewportSizeOnResize(ErrorString*, bool show, const bool
* showGrid) OVERRIDE; |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 217 |
| 217 OwnPtr<InspectorResourceContentLoader> m_inspectorResourceContentLoader; | 218 OwnPtr<InspectorResourceContentLoader> m_inspectorResourceContentLoader; |
| 218 HashMap<String, String> m_editedResourceContent; | 219 HashMap<String, String> m_editedResourceContent; |
| 219 }; | 220 }; |
| 220 | 221 |
| 221 | 222 |
| 222 } // namespace WebCore | 223 } // namespace WebCore |
| 223 | 224 |
| 224 | 225 |
| 225 #endif // !defined(InspectorPagerAgent_h) | 226 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |