| 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())
|
| {
|
| }
|
|
|