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

Side by Side Diff: components/search_provider_logos/logo_common.cc

Issue 1728033002: components: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 unified diff | Download patch
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698