| 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 20 matching lines...) Expand all Loading... |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "InspectorPageAgent.h" | 32 #include "InspectorPageAgent.h" |
| 33 | 33 |
| 34 #include "CachedCSSStyleSheet.h" | 34 #include "CachedCSSStyleSheet.h" |
| 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" | |
| 42 #include "CookieJar.h" | 41 #include "CookieJar.h" |
| 43 #include "DOMImplementation.h" | 42 #include "DOMImplementation.h" |
| 44 #include "DOMPatchSupport.h" | 43 #include "DOMPatchSupport.h" |
| 45 #include "DOMWrapperWorld.h" | 44 #include "DOMWrapperWorld.h" |
| 46 #include "DeviceOrientationController.h" | 45 #include "DeviceOrientationController.h" |
| 47 #include "Document.h" | 46 #include "Document.h" |
| 48 #include "DocumentLoader.h" | 47 #include "DocumentLoader.h" |
| 49 #include "Frame.h" | 48 #include "Frame.h" |
| 50 #include "FrameLoader.h" | 49 #include "FrameLoader.h" |
| 51 #include "FrameView.h" | 50 #include "FrameView.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 64 #include "InspectorValues.h" | 63 #include "InspectorValues.h" |
| 65 #include "InstrumentingAgents.h" | 64 #include "InstrumentingAgents.h" |
| 66 #include "MemoryCache.h" | 65 #include "MemoryCache.h" |
| 67 #include "Page.h" | 66 #include "Page.h" |
| 68 #include "ScriptController.h" | 67 #include "ScriptController.h" |
| 69 #include "ScriptObject.h" | 68 #include "ScriptObject.h" |
| 70 #include "SecurityOrigin.h" | 69 #include "SecurityOrigin.h" |
| 71 #include "Settings.h" | 70 #include "Settings.h" |
| 72 #include "TextResourceDecoder.h" | 71 #include "TextResourceDecoder.h" |
| 73 #include "UserGestureIndicator.h" | 72 #include "UserGestureIndicator.h" |
| 73 #include "core/platform/Cookie.h" |
| 74 #include "core/platform/text/RegularExpression.h" | 74 #include "core/platform/text/RegularExpression.h" |
| 75 #include "core/platform/text/TextEncoding.h" | 75 #include "core/platform/text/TextEncoding.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 |
| (...skipping 1134 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 |