| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #ifndef InspectorAgent_h | 30 #ifndef InspectorAgent_h |
| 31 #define InspectorAgent_h | 31 #define InspectorAgent_h |
| 32 | 32 |
| 33 #include "core/inspector/InspectorBaseAgent.h" | 33 #include "core/inspector/InspectorBaseAgent.h" |
| 34 #include <wtf/Forward.h> | 34 #include "wtf/Forward.h" |
| 35 #include <wtf/HashMap.h> | 35 #include "wtf/HashMap.h" |
| 36 #include <wtf/PassOwnPtr.h> | 36 #include "wtf/PassOwnPtr.h" |
| 37 #include <wtf/text/WTFString.h> | 37 #include "wtf/Vector.h" |
| 38 #include <wtf/Vector.h> | 38 #include "wtf/text/WTFString.h" |
| 39 | 39 |
| 40 namespace WebCore { | 40 namespace WebCore { |
| 41 | 41 |
| 42 class DOMWrapperWorld; | 42 class DOMWrapperWorld; |
| 43 class DocumentLoader; | 43 class DocumentLoader; |
| 44 class Frame; | 44 class Frame; |
| 45 class InjectedScriptManager; | 45 class InjectedScriptManager; |
| 46 class InspectorFrontend; | 46 class InspectorFrontend; |
| 47 class InstrumentingAgents; | 47 class InstrumentingAgents; |
| 48 class JSONObject; | 48 class JSONObject; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 103 |
| 104 Vector<pair<long, String> > m_pendingEvaluateTestCommands; | 104 Vector<pair<long, String> > m_pendingEvaluateTestCommands; |
| 105 pair<RefPtr<TypeBuilder::Runtime::RemoteObject>, RefPtr<JSONObject> > m_pend
ingInspectData; | 105 pair<RefPtr<TypeBuilder::Runtime::RemoteObject>, RefPtr<JSONObject> > m_pend
ingInspectData; |
| 106 typedef HashMap<String, String> InjectedScriptForOriginMap; | 106 typedef HashMap<String, String> InjectedScriptForOriginMap; |
| 107 InjectedScriptForOriginMap m_injectedScriptForOrigin; | 107 InjectedScriptForOriginMap m_injectedScriptForOrigin; |
| 108 }; | 108 }; |
| 109 | 109 |
| 110 } // namespace WebCore | 110 } // namespace WebCore |
| 111 | 111 |
| 112 #endif // !defined(InspectorAgent_h) | 112 #endif // !defined(InspectorAgent_h) |
| OLD | NEW |