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

Unified Diff: src/inspector/java-script-call-frame.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/inspected-context.h ('k') | src/inspector/string-16.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/inspector/java-script-call-frame.h
diff --git a/src/inspector/java-script-call-frame.h b/src/inspector/java-script-call-frame.h
index 4f66b1cfce3abd9e08be7be1e2fefd74c079721f..5a4ce19cc20ef646a215647c545201591e1bd2f4 100644
--- a/src/inspector/java-script-call-frame.h
+++ b/src/inspector/java-script-call-frame.h
@@ -31,18 +31,16 @@
#ifndef V8_INSPECTOR_JAVASCRIPTCALLFRAME_H_
#define V8_INSPECTOR_JAVASCRIPTCALLFRAME_H_
+#include <vector>
+
#include "src/base/macros.h"
#include "src/inspector/protocol-platform.h"
#include "include/v8.h"
-#include <vector>
-
namespace v8_inspector {
class JavaScriptCallFrame {
- DISALLOW_COPY_AND_ASSIGN(JavaScriptCallFrame);
-
public:
static std::unique_ptr<JavaScriptCallFrame> create(
v8::Local<v8::Context> debuggerContext, v8::Local<v8::Object> callFrame) {
@@ -73,6 +71,8 @@ class JavaScriptCallFrame {
v8::Isolate* m_isolate;
v8::Global<v8::Context> m_debuggerContext;
v8::Global<v8::Object> m_callFrame;
+
+ DISALLOW_COPY_AND_ASSIGN(JavaScriptCallFrame);
};
using JavaScriptCallFrames = std::vector<std::unique_ptr<JavaScriptCallFrame>>;
« no previous file with comments | « src/inspector/inspected-context.h ('k') | src/inspector/string-16.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698