| 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 8239b3a2b5c8f242686fafd4ba0abf82ede87cbc..1fed1a8a921c8cbd0b50a3b46eb582a66c186e2a 100644
|
| --- a/chrome/common/media_galleries/picasa_types.h
|
| +++ b/chrome/common/media_galleries/picasa_types.h
|
| @@ -13,7 +13,7 @@
|
|
|
| #include "base/files/file.h"
|
| #include "base/files/file_path.h"
|
| -#include "base/move.h"
|
| +#include "base/macros.h"
|
| #include "ipc/ipc_platform_file.h"
|
|
|
| namespace picasa {
|
| @@ -58,7 +58,6 @@ struct AlbumInfo {
|
| };
|
|
|
| struct AlbumTableFiles {
|
| - MOVE_ONLY_TYPE_FOR_CPP_03(AlbumTableFiles)
|
| public:
|
| AlbumTableFiles();
|
| explicit AlbumTableFiles(const base::FilePath& directory_path);
|
| @@ -76,6 +75,9 @@ struct AlbumTableFiles {
|
| base::File name_file;
|
| base::File token_file;
|
| base::File uid_file;
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(AlbumTableFiles);
|
| };
|
|
|
| // A mirror of AlbumTableFiles but for transit.
|
|
|