summaryrefslogtreecommitdiff
path: root/base/files/file_path.h
diff options
context:
space:
mode:
authorJay Civelli <jcivelli@google.com>2017-07-26 01:57:21 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-07-26 01:57:21 +0000
commita29e6994243913703862fdbe17c059150c9ae149 (patch)
treece481b397e704599e05c63cc5856d4d63389026c /base/files/file_path.h
parent11449a22cb2aa56becac551a01c8f61467f433cb (diff)
parent0457669b858da2f5c6ed40d14c2ce8597546d90a (diff)
downloadlibchrome-a29e6994243913703862fdbe17c059150c9ae149.tar.gz
libchrome: Uprev the library to r456626 from Chromium am: 0601274935
am: 0457669b85 Change-Id: I14fee6d53fd60f779d55001a272e88efbca37c48
Diffstat (limited to 'base/files/file_path.h')
-rw-r--r--base/files/file_path.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/base/files/file_path.h b/base/files/file_path.h
index 3234df7bfb..02846f6892 100644
--- a/base/files/file_path.h
+++ b/base/files/file_path.h
@@ -182,6 +182,13 @@ class BASE_EXPORT FilePath {
~FilePath();
FilePath& operator=(const FilePath& that);
+ // Constructs FilePath with the contents of |that|, which is left in valid but
+ // unspecified state.
+ FilePath(FilePath&& that);
+ // Replaces the contents with those of |that|, which is left in valid but
+ // unspecified state.
+ FilePath& operator=(FilePath&& that);
+
bool operator==(const FilePath& that) const;
bool operator!=(const FilePath& that) const;