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

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

Issue 2238423002: [DevTools] Generate all files in inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2240663003
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/PlatformSTL.h
diff --git a/third_party/WebKit/Source/platform/inspector_protocol/PlatformSTL.h b/third_party/WebKit/Source/platform/v8_inspector/PlatformSTL.h
similarity index 98%
rename from third_party/WebKit/Source/platform/inspector_protocol/PlatformSTL.h
rename to third_party/WebKit/Source/platform/v8_inspector/PlatformSTL.h
index 33ca199b1f4e3bc39e8237e449ebe8b19e807d2b..15dd63e3eb168a721d8bd2a108f408766b3e46de 100644
--- a/third_party/WebKit/Source/platform/inspector_protocol/PlatformSTL.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/PlatformSTL.h
@@ -158,7 +158,7 @@ public:
static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); }
- explicit unique_ptr(PtrType ptr) : m_ptr(ptr) {}
+ explicit unique_ptr(PtrType ptr) : m_ptr(ptr) {} // NOLINT
private:
PtrType internalRelease() const
@@ -202,12 +202,12 @@ template <typename T> inline typename unique_ptr<T>::ValueType& unique_ptr<T>::o
return m_ptr[i];
}
-template <typename T> inline unique_ptr<T>::unique_ptr(const unique_ptr<T>& o)
+template <typename T> inline unique_ptr<T>::unique_ptr(const unique_ptr<T>& o) // NOLINT
: m_ptr(o.internalRelease())
{
}
-template <typename T> inline unique_ptr<T>::unique_ptr(unique_ptr<T>&& o)
+template <typename T> inline unique_ptr<T>::unique_ptr(unique_ptr<T>&& o) // NOLINT
: m_ptr(o.internalRelease())
{
}

Powered by Google App Engine
This is Rietveld 408576698