| 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 "core/inspector/InspectorPageAgent.h" | 32 #include "core/inspector/InspectorPageAgent.h" |
| 33 | 33 |
| 34 #include "DOMWrapperWorld.h" | 34 #include "DOMWrapperWorld.h" |
| 35 #include "GeolocationController.h" | |
| 36 #include "GeolocationError.h" | |
| 37 #include "HTMLFrameOwnerElement.h" | 35 #include "HTMLFrameOwnerElement.h" |
| 38 #include "HTMLNames.h" | 36 #include "HTMLNames.h" |
| 39 #include "InspectorFrontend.h" | 37 #include "InspectorFrontend.h" |
| 40 #include "ScriptController.h" | 38 #include "ScriptController.h" |
| 41 #include "ScriptObject.h" | 39 #include "ScriptObject.h" |
| 42 #include "core/dom/DOMImplementation.h" | 40 #include "core/dom/DOMImplementation.h" |
| 43 #include "core/dom/DeviceOrientationController.h" | 41 #include "core/dom/DeviceOrientationController.h" |
| 44 #include "core/dom/Document.h" | 42 #include "core/dom/Document.h" |
| 45 #include "core/dom/UserGestureIndicator.h" | 43 #include "core/dom/UserGestureIndicator.h" |
| 46 #include "core/inspector/ContentSearchUtils.h" | 44 #include "core/inspector/ContentSearchUtils.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 66 #include "core/loader/cache/CachedScript.h" | 64 #include "core/loader/cache/CachedScript.h" |
| 67 #include "core/loader/cache/MemoryCache.h" | 65 #include "core/loader/cache/MemoryCache.h" |
| 68 #include "core/page/Frame.h" | 66 #include "core/page/Frame.h" |
| 69 #include "core/page/FrameView.h" | 67 #include "core/page/FrameView.h" |
| 70 #include "core/page/Page.h" | 68 #include "core/page/Page.h" |
| 71 #include "core/page/SecurityOrigin.h" | 69 #include "core/page/SecurityOrigin.h" |
| 72 #include "core/page/Settings.h" | 70 #include "core/page/Settings.h" |
| 73 #include "core/platform/Cookie.h" | 71 #include "core/platform/Cookie.h" |
| 74 #include "core/platform/text/RegularExpression.h" | 72 #include "core/platform/text/RegularExpression.h" |
| 75 #include "core/platform/text/TextEncoding.h" | 73 #include "core/platform/text/TextEncoding.h" |
| 74 #include "modules/geolocation/GeolocationController.h" |
| 75 #include "modules/geolocation/GeolocationError.h" |
| 76 #include <wtf/CurrentTime.h> | 76 #include <wtf/CurrentTime.h> |
| 77 #include <wtf/ListHashSet.h> | 77 #include <wtf/ListHashSet.h> |
| 78 #include <wtf/text/Base64.h> | 78 #include <wtf/text/Base64.h> |
| 79 #include <wtf/text/StringBuilder.h> | 79 #include <wtf/text/StringBuilder.h> |
| 80 #include <wtf/Vector.h> | 80 #include <wtf/Vector.h> |
| 81 | 81 |
| 82 using namespace std; | 82 using namespace std; |
| 83 | 83 |
| 84 namespace WebCore { | 84 namespace WebCore { |
| 85 | 85 |
| (...skipping 1132 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 |