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

Unified Diff: mojo/edk/embedder/scoped_platform_handle.h

Issue 2038273002: Remove base/move.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: is_constructible Created 4 years, 6 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 | « media/capture/video/scoped_result_callback.h ('k') | mojo/public/cpp/bindings/array.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/embedder/scoped_platform_handle.h
diff --git a/mojo/edk/embedder/scoped_platform_handle.h b/mojo/edk/embedder/scoped_platform_handle.h
index 59ceeab369e7a4140f201b2a721b25db783d7c75..15b80ea4b288c014373a7dc8d66566e8b4c837c7 100644
--- a/mojo/edk/embedder/scoped_platform_handle.h
+++ b/mojo/edk/embedder/scoped_platform_handle.h
@@ -5,8 +5,8 @@
#ifndef MOJO_EDK_EMBEDDER_SCOPED_PLATFORM_HANDLE_H_
#define MOJO_EDK_EMBEDDER_SCOPED_PLATFORM_HANDLE_H_
+#include "base/compiler_specific.h"
#include "base/macros.h"
-#include "base/move.h"
#include "mojo/edk/embedder/platform_handle.h"
#include "mojo/edk/system/system_impl_export.h"
#include "mojo/public/c/system/macros.h"
@@ -15,8 +15,6 @@ namespace mojo {
namespace edk {
class MOJO_SYSTEM_IMPL_EXPORT ScopedPlatformHandle {
- DISALLOW_COPY_AND_ASSIGN_WITH_MOVE_FOR_BIND(ScopedPlatformHandle)
-
public:
ScopedPlatformHandle() {}
explicit ScopedPlatformHandle(PlatformHandle handle) : handle_(handle) {}
@@ -55,6 +53,8 @@ class MOJO_SYSTEM_IMPL_EXPORT ScopedPlatformHandle {
private:
PlatformHandle handle_;
+
+ DISALLOW_COPY_AND_ASSIGN(ScopedPlatformHandle);
};
} // namespace edk
« no previous file with comments | « media/capture/video/scoped_result_callback.h ('k') | mojo/public/cpp/bindings/array.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698