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 14 matching lines...) Expand all Loading... |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 #include "InspectorPageAgent.h" | 32 #include "InspectorPageAgent.h" |
33 | 33 |
34 #include "ContentSearchUtils.h" | 34 #include "ContentSearchUtils.h" |
35 #include "DOMImplementation.h" | |
36 #include "DOMPatchSupport.h" | 35 #include "DOMPatchSupport.h" |
37 #include "DOMWrapperWorld.h" | 36 #include "DOMWrapperWorld.h" |
38 #include "DeviceOrientationController.h" | |
39 #include "Document.h" | |
40 #include "GeolocationController.h" | 37 #include "GeolocationController.h" |
41 #include "GeolocationError.h" | 38 #include "GeolocationError.h" |
42 #include "HTMLFrameOwnerElement.h" | 39 #include "HTMLFrameOwnerElement.h" |
43 #include "HTMLNames.h" | 40 #include "HTMLNames.h" |
44 #include "IdentifiersFactory.h" | 41 #include "IdentifiersFactory.h" |
45 #include "InjectedScriptManager.h" | 42 #include "InjectedScriptManager.h" |
46 #include "InspectorAgent.h" | 43 #include "InspectorAgent.h" |
47 #include "InspectorClient.h" | 44 #include "InspectorClient.h" |
48 #include "InspectorFrontend.h" | 45 #include "InspectorFrontend.h" |
49 #include "InspectorInstrumentation.h" | 46 #include "InspectorInstrumentation.h" |
50 #include "InspectorOverlay.h" | 47 #include "InspectorOverlay.h" |
51 #include "InspectorState.h" | 48 #include "InspectorState.h" |
52 #include "InspectorValues.h" | 49 #include "InspectorValues.h" |
53 #include "InstrumentingAgents.h" | 50 #include "InstrumentingAgents.h" |
54 #include "ScriptController.h" | 51 #include "ScriptController.h" |
55 #include "ScriptObject.h" | 52 #include "ScriptObject.h" |
56 #include "UserGestureIndicator.h" | 53 #include "core/dom/DOMImplementation.h" |
| 54 #include "core/dom/DeviceOrientationController.h" |
| 55 #include "core/dom/Document.h" |
| 56 #include "core/dom/UserGestureIndicator.h" |
57 #include "core/loader/CookieJar.h" | 57 #include "core/loader/CookieJar.h" |
58 #include "core/loader/DocumentLoader.h" | 58 #include "core/loader/DocumentLoader.h" |
59 #include "core/loader/FrameLoader.h" | 59 #include "core/loader/FrameLoader.h" |
60 #include "core/loader/TextResourceDecoder.h" | 60 #include "core/loader/TextResourceDecoder.h" |
61 #include "core/loader/cache/CachedCSSStyleSheet.h" | 61 #include "core/loader/cache/CachedCSSStyleSheet.h" |
62 #include "core/loader/cache/CachedFont.h" | 62 #include "core/loader/cache/CachedFont.h" |
63 #include "core/loader/cache/CachedImage.h" | 63 #include "core/loader/cache/CachedImage.h" |
64 #include "core/loader/cache/CachedResource.h" | 64 #include "core/loader/cache/CachedResource.h" |
65 #include "core/loader/cache/CachedResourceLoader.h" | 65 #include "core/loader/cache/CachedResourceLoader.h" |
66 #include "core/loader/cache/CachedScript.h" | 66 #include "core/loader/cache/CachedScript.h" |
(...skipping 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1218 // Handled on the browser level. | 1218 // Handled on the browser level. |
1219 } | 1219 } |
1220 | 1220 |
1221 void InspectorPageAgent::handleJavaScriptDialog(ErrorString* errorString, bool a
ccept, const String* promptText) | 1221 void InspectorPageAgent::handleJavaScriptDialog(ErrorString* errorString, bool a
ccept, const String* promptText) |
1222 { | 1222 { |
1223 // Handled on the browser level. | 1223 // Handled on the browser level. |
1224 } | 1224 } |
1225 | 1225 |
1226 } // namespace WebCore | 1226 } // namespace WebCore |
1227 | 1227 |
OLD | NEW |