Chromium Code Reviews| 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, bool textAutosizing); |
| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 173 Frame* findFrameWithSecurityOrigin(const String& originRawString); | 173 Frame* findFrameWithSecurityOrigin(const String& originRawString); |
| 174 Frame* assertFrame(ErrorString*, const String& frameId); | 174 Frame* assertFrame(ErrorString*, const String& frameId); |
| 175 String scriptPreprocessorSource() { return m_scriptPreprocessorSource; } | 175 String scriptPreprocessorSource() { return m_scriptPreprocessorSource; } |
| 176 String resourceSourceMapURL(const String& url); | 176 String resourceSourceMapURL(const String& url); |
| 177 static DocumentLoader* assertDocumentLoader(ErrorString*, Frame*); | 177 static DocumentLoader* assertDocumentLoader(ErrorString*, Frame*); |
| 178 | 178 |
| 179 private: | 179 private: |
| 180 static void resourceContent(ErrorString*, Frame*, const KURL&, String* resul t, bool* base64Encoded); | 180 static void resourceContent(ErrorString*, Frame*, const KURL&, String* resul t, bool* base64Encoded); |
| 181 | 181 |
| 182 InspectorPageAgent(InstrumentingAgents*, Page*, InspectorCompositeState*, In jectedScriptManager*, InspectorClient*, InspectorOverlay*); | 182 InspectorPageAgent(InstrumentingAgents*, Page*, InspectorCompositeState*, In jectedScriptManager*, InspectorClient*, InspectorOverlay*); |
| 183 bool deviceMetricsChanged(int width, int height, double fontScaleFactor, boo l fitWindow); | 183 bool deviceMetricsChanged(int width, int height, double fontScaleFactor, boo l fitWindow, bool textAutosizing); |
| 184 void updateViewMetrics(int, int, double, bool); | 184 void updateViewMetrics(int, int, double, bool, bool); |
|
skobes
2013/10/16 19:38:09
The C++ style guide forbids unnamed params (and I
pdr.
2013/10/18 01:28:44
Sure thing, done.
| |
| 185 void updateTouchEventEmulationInPage(bool); | 185 void updateTouchEventEmulationInPage(bool); |
| 186 void updateOverridesTopOffset(); | 186 void updateOverridesTopOffset(); |
| 187 | 187 |
| 188 static bool dataContent(const char* data, unsigned size, const String& textE ncodingName, bool withBase64Encode, String* result); | 188 static bool dataContent(const char* data, unsigned size, const String& textE ncodingName, bool withBase64Encode, String* result); |
| 189 | 189 |
| 190 PassRefPtr<TypeBuilder::Page::Frame> buildObjectForFrame(Frame*); | 190 PassRefPtr<TypeBuilder::Page::Frame> buildObjectForFrame(Frame*); |
| 191 PassRefPtr<TypeBuilder::Page::FrameResourceTree> buildObjectForFrameTree(Fra me*); | 191 PassRefPtr<TypeBuilder::Page::FrameResourceTree> buildObjectForFrameTree(Fra me*); |
| 192 Page* m_page; | 192 Page* m_page; |
| 193 InjectedScriptManager* m_injectedScriptManager; | 193 InjectedScriptManager* m_injectedScriptManager; |
| 194 InspectorClient* m_client; | 194 InspectorClient* m_client; |
| (...skipping 14 matching lines...) Expand all 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 |