| 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 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef InspectorPageAgent_h | 31 #ifndef InspectorPageAgent_h |
| 32 #define InspectorPageAgent_h | 32 #define InspectorPageAgent_h |
| 33 | 33 |
| 34 | 34 |
| 35 #include "InspectorFrontend.h" | 35 #include "InspectorFrontend.h" |
| 36 #include "core/dom/DeviceOrientationData.h" | 36 #include "core/dom/DeviceOrientationData.h" |
| 37 #include "core/inspector/InspectorBaseAgent.h" | 37 #include "core/inspector/InspectorBaseAgent.h" |
| 38 #include "modules/geolocation/GeolocationPosition.h" | 38 #include "modules/geolocation/GeolocationPosition.h" |
| 39 #include <wtf/HashMap.h> | 39 #include "wtf/HashMap.h" |
| 40 #include <wtf/RefCounted.h> | 40 #include "wtf/text/WTFString.h" |
| 41 #include <wtf/text/WTFString.h> | |
| 42 #include <wtf/Vector.h> | |
| 43 | 41 |
| 44 namespace WebCore { | 42 namespace WebCore { |
| 45 | 43 |
| 46 class CachedResource; | 44 class CachedResource; |
| 47 class DOMWrapperWorld; | 45 class DOMWrapperWorld; |
| 48 class DocumentLoader; | 46 class DocumentLoader; |
| 49 class Frame; | 47 class Frame; |
| 50 class GraphicsContext; | 48 class GraphicsContext; |
| 51 class InjectedScriptManager; | 49 class InjectedScriptManager; |
| 52 class InspectorClient; | 50 class InspectorClient; |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 RefPtr<GeolocationPosition> m_geolocationPosition; | 202 RefPtr<GeolocationPosition> m_geolocationPosition; |
| 205 RefPtr<GeolocationPosition> m_platformGeolocationPosition; | 203 RefPtr<GeolocationPosition> m_platformGeolocationPosition; |
| 206 RefPtr<DeviceOrientationData> m_deviceOrientation; | 204 RefPtr<DeviceOrientationData> m_deviceOrientation; |
| 207 }; | 205 }; |
| 208 | 206 |
| 209 | 207 |
| 210 } // namespace WebCore | 208 } // namespace WebCore |
| 211 | 209 |
| 212 | 210 |
| 213 #endif // !defined(InspectorPagerAgent_h) | 211 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |