sfiera | 635d21d | 2016-08-04 07:56:09 | [diff] [blame] | 1 | // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "components/ntp_tiles/ntp_tile.h" |
| 6 | |
| 7 | namespace ntp_tiles { |
| 8 | |
| 9 | NTPTile::NTPTile() : source(NTPTileSource::TOP_SITES) {} |
| 10 | |
sfiera | 08b57f8 | 2016-09-22 10:14:27 | [diff] [blame] | 11 | NTPTile::NTPTile(const NTPTile&) = default; |
| 12 | |
sfiera | 635d21d | 2016-08-04 07:56:09 | [diff] [blame] | 13 | NTPTile::~NTPTile() {} |
| 14 | |
sfiera | 635d21d | 2016-08-04 07:56:09 | [diff] [blame] | 15 | } // namespace ntp_tiles |