| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ | 5 #ifndef WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ |
| 6 #define WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ | 6 #define WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include <wtf/OwnPtr.h> | 10 #include <wtf/OwnPtr.h> |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 OwnPtr<DomAgentDelegateStub> dom_agent_delegate_stub_; | 94 OwnPtr<DomAgentDelegateStub> dom_agent_delegate_stub_; |
| 95 OwnPtr<ToolsAgentDelegateStub> tools_agent_delegate_stub_; | 95 OwnPtr<ToolsAgentDelegateStub> tools_agent_delegate_stub_; |
| 96 OwnPtr<ToolsAgentNativeDelegateStub> tools_agent_native_delegate_stub_; | 96 OwnPtr<ToolsAgentNativeDelegateStub> tools_agent_native_delegate_stub_; |
| 97 OwnPtr<DebuggerAgentImpl> debugger_agent_impl_; | 97 OwnPtr<DebuggerAgentImpl> debugger_agent_impl_; |
| 98 OwnPtr<DomAgentImpl> dom_agent_impl_; | 98 OwnPtr<DomAgentImpl> dom_agent_impl_; |
| 99 bool attached_; | 99 bool attached_; |
| 100 // TODO(pfeldman): This should not be needed once GC styles issue is fixed | 100 // TODO(pfeldman): This should not be needed once GC styles issue is fixed |
| 101 // for matching rules. | 101 // for matching rules. |
| 102 v8::Persistent<v8::Context> utility_context_; | 102 v8::Persistent<v8::Context> utility_context_; |
| 103 OwnPtr<BoundObject> devtools_agent_host_; | 103 OwnPtr<BoundObject> devtools_agent_host_; |
| 104 std::string report_frame_navigate_url_; |
| 104 DISALLOW_COPY_AND_ASSIGN(WebDevToolsAgentImpl); | 105 DISALLOW_COPY_AND_ASSIGN(WebDevToolsAgentImpl); |
| 105 }; | 106 }; |
| 106 | 107 |
| 107 #endif // WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ | 108 #endif // WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ |
| OLD | NEW |