OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/search_provider_logos/logo_common.h" | 5 #include "components/search_provider_logos/logo_common.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 namespace search_provider_logos { | 9 namespace search_provider_logos { |
10 | 10 |
11 const int64_t kMaxTimeToLiveMS = INT64_C(30 * 24 * 60 * 60 * 1000); // 30 days | 11 const int64_t kMaxTimeToLiveMS = INT64_C(30 * 24 * 60 * 60 * 1000); // 30 days |
12 | 12 |
13 LogoMetadata::LogoMetadata() : can_show_after_expiration(false) {} | 13 LogoMetadata::LogoMetadata() : can_show_after_expiration(false) {} |
| 14 LogoMetadata::LogoMetadata(const LogoMetadata& other) = default; |
14 LogoMetadata::~LogoMetadata() {} | 15 LogoMetadata::~LogoMetadata() {} |
15 | 16 |
16 EncodedLogo::EncodedLogo() {} | 17 EncodedLogo::EncodedLogo() {} |
| 18 EncodedLogo::EncodedLogo(const EncodedLogo& other) = default; |
17 EncodedLogo::~EncodedLogo() {} | 19 EncodedLogo::~EncodedLogo() {} |
18 | 20 |
19 Logo::Logo() {} | 21 Logo::Logo() {} |
20 Logo::~Logo() {} | 22 Logo::~Logo() {} |
21 | 23 |
22 } // namespace search_provider_logos | 24 } // namespace search_provider_logos |
OLD | NEW |