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 24 matching lines...) Expand all Loading... |
35 #include "CachedFont.h" | 35 #include "CachedFont.h" |
36 #include "CachedImage.h" | 36 #include "CachedImage.h" |
37 #include "CachedResource.h" | 37 #include "CachedResource.h" |
38 #include "CachedResourceLoader.h" | 38 #include "CachedResourceLoader.h" |
39 #include "CachedScript.h" | 39 #include "CachedScript.h" |
40 #include "ContentSearchUtils.h" | 40 #include "ContentSearchUtils.h" |
41 #include "Cookie.h" | 41 #include "Cookie.h" |
42 #include "CookieJar.h" | 42 #include "CookieJar.h" |
43 #include "DOMImplementation.h" | 43 #include "DOMImplementation.h" |
44 #include "DOMPatchSupport.h" | 44 #include "DOMPatchSupport.h" |
| 45 #include "DOMWrapperWorld.h" |
45 #include "DeviceOrientationController.h" | 46 #include "DeviceOrientationController.h" |
46 #include "Document.h" | 47 #include "Document.h" |
47 #include "DocumentLoader.h" | 48 #include "DocumentLoader.h" |
48 #include "Frame.h" | 49 #include "Frame.h" |
49 #include "FrameLoader.h" | 50 #include "FrameLoader.h" |
50 #include "FrameView.h" | 51 #include "FrameView.h" |
51 #include "GeolocationController.h" | 52 #include "GeolocationController.h" |
52 #include "GeolocationError.h" | 53 #include "GeolocationError.h" |
53 #include "HTMLFrameOwnerElement.h" | 54 #include "HTMLFrameOwnerElement.h" |
54 #include "HTMLNames.h" | 55 #include "HTMLNames.h" |
55 #include "IdentifiersFactory.h" | 56 #include "IdentifiersFactory.h" |
56 #include "InjectedScriptManager.h" | 57 #include "InjectedScriptManager.h" |
57 #include "InspectorAgent.h" | 58 #include "InspectorAgent.h" |
58 #include "InspectorClient.h" | 59 #include "InspectorClient.h" |
59 #include "InspectorFrontend.h" | 60 #include "InspectorFrontend.h" |
60 #include "InspectorInstrumentation.h" | 61 #include "InspectorInstrumentation.h" |
61 #include "InspectorOverlay.h" | 62 #include "InspectorOverlay.h" |
62 #include "InspectorState.h" | 63 #include "InspectorState.h" |
63 #include "InspectorValues.h" | 64 #include "InspectorValues.h" |
64 #include "InstrumentingAgents.h" | 65 #include "InstrumentingAgents.h" |
65 #include "MemoryCache.h" | 66 #include "MemoryCache.h" |
66 #include "Page.h" | 67 #include "Page.h" |
67 #include "RegularExpression.h" | 68 #include "RegularExpression.h" |
68 #include "ResourceBuffer.h" | 69 #include "ResourceBuffer.h" |
| 70 #include "ScriptController.h" |
69 #include "ScriptObject.h" | 71 #include "ScriptObject.h" |
70 #include "SecurityOrigin.h" | 72 #include "SecurityOrigin.h" |
71 #include "Settings.h" | 73 #include "Settings.h" |
72 #include "TextEncoding.h" | 74 #include "TextEncoding.h" |
73 #include "TextResourceDecoder.h" | 75 #include "TextResourceDecoder.h" |
74 #include "UserGestureIndicator.h" | 76 #include "UserGestureIndicator.h" |
75 #include <wtf/CurrentTime.h> | 77 #include <wtf/CurrentTime.h> |
76 #include <wtf/ListHashSet.h> | 78 #include <wtf/ListHashSet.h> |
77 #include <wtf/Vector.h> | 79 #include <wtf/Vector.h> |
78 #include <wtf/text/Base64.h> | 80 #include <wtf/text/Base64.h> |
(...skipping 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1231 // Handled on the browser level. | 1233 // Handled on the browser level. |
1232 } | 1234 } |
1233 | 1235 |
1234 void InspectorPageAgent::handleJavaScriptDialog(ErrorString* errorString, bool a
ccept, const String* promptText) | 1236 void InspectorPageAgent::handleJavaScriptDialog(ErrorString* errorString, bool a
ccept, const String* promptText) |
1235 { | 1237 { |
1236 // Handled on the browser level. | 1238 // Handled on the browser level. |
1237 } | 1239 } |
1238 | 1240 |
1239 } // namespace WebCore | 1241 } // namespace WebCore |
1240 | 1242 |
OLD | NEW |