| 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_DEVTOOLS_DEBUGGER_AGENT_MANAGER_H_ | 5 #ifndef WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_MANAGER_H_ |
| 6 #define WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_MANAGER_H_ | 6 #define WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_MANAGER_H_ |
| 7 | 7 |
| 8 #include <wtf/HashMap.h> | 8 #include <wtf/HashMap.h> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/logging.h" |
| 11 #include "v8/include/v8-debug.h" | 12 #include "v8/include/v8-debug.h" |
| 12 #include "webkit/glue/webdevtoolsagent.h" | 13 #include "webkit/glue/webdevtoolsagent.h" |
| 13 | 14 |
| 14 namespace WebCore { | 15 namespace WebCore { |
| 15 class PageGroupLoadDeferrer; | 16 class PageGroupLoadDeferrer; |
| 16 } | 17 } |
| 17 | 18 |
| 18 class DebuggerAgentImpl; | 19 class DebuggerAgentImpl; |
| 19 class DictionaryValue; | 20 class DictionaryValue; |
| 20 class WebFrameImpl; | 21 class WebFrameImpl; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 DeferrersMap; | 93 DeferrersMap; |
| 93 static DeferrersMap page_deferrers_; | 94 static DeferrersMap page_deferrers_; |
| 94 | 95 |
| 95 static bool in_utility_context_; | 96 static bool in_utility_context_; |
| 96 static bool debug_break_delayed_; | 97 static bool debug_break_delayed_; |
| 97 | 98 |
| 98 DISALLOW_COPY_AND_ASSIGN(DebuggerAgentManager); | 99 DISALLOW_COPY_AND_ASSIGN(DebuggerAgentManager); |
| 99 }; | 100 }; |
| 100 | 101 |
| 101 #endif // WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_MANAGER_H_ | 102 #endif // WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_MANAGER_H_ |
| OLD | NEW |