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

Unified Diff: components/ntp_tiles/ntp_tile.h

Issue 2341963002: Make NTPTile copyable. (Closed)
Patch Set: Add copy constructor. Created 4 years, 3 months 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
« no previous file with comments | « no previous file | components/ntp_tiles/ntp_tile.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/ntp_tiles/ntp_tile.h
diff --git a/components/ntp_tiles/ntp_tile.h b/components/ntp_tiles/ntp_tile.h
index e82cd4db3e509c1182f95d2c8fcd687d0ddfc474..ef228b54b385dfe68d82c4265150dbcd23757d9b 100644
--- a/components/ntp_tiles/ntp_tile.h
+++ b/components/ntp_tiles/ntp_tile.h
@@ -38,13 +38,8 @@ struct NTPTile {
base::FilePath whitelist_icon_path;
NTPTile();
+ NTPTile(const NTPTile&);
~NTPTile();
-
- NTPTile(NTPTile&&);
- NTPTile& operator=(NTPTile&&);
-
- private:
- DISALLOW_COPY_AND_ASSIGN(NTPTile);
};
using NTPTilesVector = std::vector<NTPTile>;
« no previous file with comments | « no previous file | components/ntp_tiles/ntp_tile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698