Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Unified Diff: src/inspector/v8-debugger.h

Issue 2343733002: [inspector] enabled presubmit for inspector sub folder (Closed)
Patch Set: addressed comments Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/inspector/v8-console-message.cc ('k') | src/inspector/v8-debugger-agent-impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/inspector/v8-debugger.h
diff --git a/src/inspector/v8-debugger.h b/src/inspector/v8-debugger.h
index 8f02aa0aea2d065bcbc49a8eda03b60a0121ce68..83c1b21b02a712288c090eb9dcf6567d5c37b97b 100644
--- a/src/inspector/v8-debugger.h
+++ b/src/inspector/v8-debugger.h
@@ -5,6 +5,8 @@
#ifndef V8_INSPECTOR_V8DEBUGGER_H_
#define V8_INSPECTOR_V8DEBUGGER_H_
+#include <vector>
+
#include "src/base/macros.h"
#include "src/inspector/java-script-call-frame.h"
#include "src/inspector/protocol/Forward.h"
@@ -14,8 +16,6 @@
#include "include/v8-debug.h"
#include "include/v8-inspector.h"
-#include <vector>
-
namespace v8_inspector {
struct ScriptBreakpoint;
@@ -26,8 +26,6 @@ class V8StackTraceImpl;
using protocol::ErrorString;
class V8Debugger {
- DISALLOW_COPY_AND_ASSIGN(V8Debugger);
-
public:
V8Debugger(v8::Isolate*, V8InspectorImpl*);
~V8Debugger();
@@ -153,6 +151,8 @@ class V8Debugger {
std::vector<void*> m_currentTasks;
std::vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks;
protocol::HashMap<V8DebuggerAgentImpl*, int> m_maxAsyncCallStackDepthMap;
+
+ DISALLOW_COPY_AND_ASSIGN(V8Debugger);
};
} // namespace v8_inspector
« no previous file with comments | « src/inspector/v8-console-message.cc ('k') | src/inspector/v8-debugger-agent-impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698