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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h

Issue 2246233002: [DevTools] Move platform/v8_inspector classes under v8_inspector namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
Index: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
index 9a06c314fe84626a83ff89e99fbc81e82bcabbcc..75882dc3d2dfe00d14ca7e853866403c61caa79b 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
@@ -11,7 +11,7 @@
#include <vector>
-namespace blink {
+namespace v8_inspector {
struct ScriptBreakpoint;
class JavaScriptCallFrame;
@@ -23,11 +23,8 @@ class V8InspectorSessionImpl;
class V8Regex;
class V8StackTraceImpl;
-namespace protocol {
-class DictionaryValue;
-}
-
-using protocol::Maybe;
+namespace protocol = blink::protocol;
+using blink::protocol::Maybe;
class V8DebuggerAgentImpl : public protocol::Debugger::Backend {
PROTOCOL_DISALLOW_COPY(V8DebuggerAgentImpl);
@@ -210,7 +207,6 @@ private:
protocol::HashMap<String16, std::vector<std::pair<int, int>>> m_blackboxedPositions;
};
-} // namespace blink
-
+} // namespace v8_inspector
#endif // V8DebuggerAgentImpl_h

Powered by Google App Engine
This is Rietveld 408576698