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

Unified Diff: chrome/common/media_galleries/picasa_types.h

Issue 1407443002: Remove old C++03 move emulation code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: std::move and reflow Created 5 years, 1 month 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: chrome/common/media_galleries/picasa_types.h
diff --git a/chrome/common/media_galleries/picasa_types.h b/chrome/common/media_galleries/picasa_types.h
index b76946a51b449e823526e6c91daf52da045df372..03cc78c204d938fb384f7741ab491ec36707f597 100644
--- a/chrome/common/media_galleries/picasa_types.h
+++ b/chrome/common/media_galleries/picasa_types.h
@@ -55,15 +55,14 @@ struct AlbumInfo {
};
struct AlbumTableFiles {
- MOVE_ONLY_TYPE_FOR_CPP_03(AlbumTableFiles, RValue)
+ MOVE_ONLY_TYPE_FOR_CPP_03(AlbumTableFiles)
public:
AlbumTableFiles();
explicit AlbumTableFiles(const base::FilePath& directory_path);
~AlbumTableFiles();
- // C++03 move emulation of this type.
- AlbumTableFiles(RValue other);
- AlbumTableFiles& operator=(RValue other);
+ AlbumTableFiles(AlbumTableFiles&& other);
+ AlbumTableFiles& operator=(AlbumTableFiles&& other);
// Special empty file used to confirm existence of table.
base::File indicator_file;
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc ('k') | chrome/common/media_galleries/picasa_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698