| 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;
 | 
| 
 |