| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 Page* page() { return m_page; } | 167 Page* page() { return m_page; } |
| 168 Frame* mainFrame(); | 168 Frame* mainFrame(); |
| 169 String createIdentifier(); | 169 String createIdentifier(); |
| 170 Frame* frameForId(const String& frameId); | 170 Frame* frameForId(const String& frameId); |
| 171 String frameId(Frame*); | 171 String frameId(Frame*); |
| 172 bool hasIdForFrame(Frame*) const; | 172 bool hasIdForFrame(Frame*) const; |
| 173 String loaderId(DocumentLoader*); | 173 String loaderId(DocumentLoader*); |
| 174 Frame* findFrameWithSecurityOrigin(const String& originRawString); | 174 Frame* findFrameWithSecurityOrigin(const String& originRawString); |
| 175 Frame* assertFrame(ErrorString*, const String& frameId); | 175 Frame* assertFrame(ErrorString*, const String& frameId); |
| 176 String scriptPreprocessorSource() { return m_scriptPreprocessorSource; } | 176 String scriptPreprocessorSource() { return m_scriptPreprocessorSource; } |
| 177 String resourceSourceMapURL(const String& url); | 177 const AtomicString& resourceSourceMapURL(const String& url); |
| 178 bool deviceMetricsOverrideEnabled(); | 178 bool deviceMetricsOverrideEnabled(); |
| 179 static DocumentLoader* assertDocumentLoader(ErrorString*, Frame*); | 179 static DocumentLoader* assertDocumentLoader(ErrorString*, Frame*); |
| 180 | 180 |
| 181 private: | 181 private: |
| 182 static void resourceContent(ErrorString*, Frame*, const KURL&, String* resul
t, bool* base64Encoded); | 182 static void resourceContent(ErrorString*, Frame*, const KURL&, String* resul
t, bool* base64Encoded); |
| 183 | 183 |
| 184 InspectorPageAgent(InstrumentingAgents*, Page*, InspectorCompositeState*, In
jectedScriptManager*, InspectorClient*, InspectorOverlay*); | 184 InspectorPageAgent(InstrumentingAgents*, Page*, InspectorCompositeState*, In
jectedScriptManager*, InspectorClient*, InspectorOverlay*); |
| 185 bool deviceMetricsChanged(int width, int height, double deviceScaleFactor, b
ool emulateViewport, bool fitWindow, double fontScaleFactor, bool textAutosizing
); | 185 bool deviceMetricsChanged(int width, int height, double deviceScaleFactor, b
ool emulateViewport, bool fitWindow, double fontScaleFactor, bool textAutosizing
); |
| 186 void updateViewMetrics(int width, int height, double deviceScaleFactor, bool
emulateViewport, bool fitWindow); | 186 void updateViewMetrics(int width, int height, double deviceScaleFactor, bool
emulateViewport, bool fitWindow); |
| 187 void updateTouchEventEmulationInPage(bool); | 187 void updateTouchEventEmulationInPage(bool); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 210 bool m_deviceMetricsOverridden; | 210 bool m_deviceMetricsOverridden; |
| 211 RefPtr<GeolocationPosition> m_geolocationPosition; | 211 RefPtr<GeolocationPosition> m_geolocationPosition; |
| 212 RefPtr<GeolocationPosition> m_platformGeolocationPosition; | 212 RefPtr<GeolocationPosition> m_platformGeolocationPosition; |
| 213 }; | 213 }; |
| 214 | 214 |
| 215 | 215 |
| 216 } // namespace WebCore | 216 } // namespace WebCore |
| 217 | 217 |
| 218 | 218 |
| 219 #endif // !defined(InspectorPagerAgent_h) | 219 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |