| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 InspectorOverlay* m_overlay; | 196 InspectorOverlay* m_overlay; |
| 197 long m_lastScriptIdentifier; | 197 long m_lastScriptIdentifier; |
| 198 String m_pendingScriptToEvaluateOnLoadOnce; | 198 String m_pendingScriptToEvaluateOnLoadOnce; |
| 199 String m_scriptToEvaluateOnLoadOnce; | 199 String m_scriptToEvaluateOnLoadOnce; |
| 200 String m_pendingScriptPreprocessor; | 200 String m_pendingScriptPreprocessor; |
| 201 String m_scriptPreprocessorSource; | 201 String m_scriptPreprocessorSource; |
| 202 HashMap<Frame*, String> m_frameToIdentifier; | 202 HashMap<Frame*, String> m_frameToIdentifier; |
| 203 HashMap<String, Frame*> m_identifierToFrame; | 203 HashMap<String, Frame*> m_identifierToFrame; |
| 204 HashMap<DocumentLoader*, String> m_loaderToIdentifier; | 204 HashMap<DocumentLoader*, String> m_loaderToIdentifier; |
| 205 bool m_enabled; | 205 bool m_enabled; |
| 206 bool m_isFirstLayoutAfterOnLoad; | |
| 207 bool m_geolocationOverridden; | 206 bool m_geolocationOverridden; |
| 208 bool m_ignoreScriptsEnabledNotification; | 207 bool m_ignoreScriptsEnabledNotification; |
| 209 bool m_didForceCompositingMode; | 208 bool m_didForceCompositingMode; |
| 210 RefPtr<GeolocationPosition> m_geolocationPosition; | 209 RefPtr<GeolocationPosition> m_geolocationPosition; |
| 211 RefPtr<GeolocationPosition> m_platformGeolocationPosition; | 210 RefPtr<GeolocationPosition> m_platformGeolocationPosition; |
| 212 RefPtr<DeviceOrientationData> m_deviceOrientation; | 211 RefPtr<DeviceOrientationData> m_deviceOrientation; |
| 213 }; | 212 }; |
| 214 | 213 |
| 215 | 214 |
| 216 } // namespace WebCore | 215 } // namespace WebCore |
| 217 | 216 |
| 218 | 217 |
| 219 #endif // !defined(InspectorPagerAgent_h) | 218 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |