Index: base/process/process.h |
diff --git a/base/process/process.h b/base/process/process.h |
index 2a83cb088ac11d581406508fd15834c6a883784f..fe6e943c40917ee9ec99b5dc56bfc7f07ea1f8cf 100644 |
--- a/base/process/process.h |
+++ b/base/process/process.h |
@@ -32,19 +32,17 @@ namespace base { |
// the process dies, and it may be reused by the system, which means that it may |
// end up pointing to the wrong process. |
class BASE_EXPORT Process { |
- MOVE_ONLY_TYPE_FOR_CPP_03(Process, RValue) |
+ MOVE_ONLY_TYPE_FOR_CPP_03(Process) |
public: |
explicit Process(ProcessHandle handle = kNullProcessHandle); |
- // Move constructor for C++03 move emulation of this type. |
- Process(RValue other); |
+ Process(Process&& other); |
// The destructor does not terminate the process. |
~Process(); |
- // Move operator= for C++03 move emulation of this type. |
- Process& operator=(RValue other); |
+ Process& operator=(Process&& other); |
// Returns an object for the current process. |
static Process Current(); |