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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/Atomics.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/Atomics.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/Atomics.h b/third_party/WebKit/Source/platform/v8_inspector/Atomics.h
index 56cb3ab7ab9129a3c9bce2d905f1448b22320a0e..8523df6294158ed327bc164ce50130ceacbf2089 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/Atomics.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/Atomics.h
@@ -11,7 +11,7 @@
#include <windows.h>
#endif
-namespace blink {
+namespace v8_inspector {
#if defined(_MSC_VER)
@@ -24,6 +24,6 @@ inline int atomicIncrement(int volatile* addend) { return atomicAdd(addend, 1);
#endif
-} // namespace blink
+} // namespace v8_inspector
#endif /* Atomics_h */

Powered by Google App Engine
This is Rietveld 408576698