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 3 // found in the LICENSE file. 4 5 #include "components/search_provider_logos/logo_common.h" 6 7 namespace search_provider_logos { 8 9 const int64 kMaxTimeToLiveMS = GG_INT64_C(30 * 24 * 60 * 60 * 1000); // 30 days 10 11 LogoMetadata::LogoMetadata() : can_show_after_expiration(false) {} 12 LogoMetadata::~LogoMetadata() {} 13 14 EncodedLogo::EncodedLogo() {} 15 EncodedLogo::~EncodedLogo() {} 16 17 Logo::Logo() {} 18 Logo::~Logo() {} 19 20 } // namespace search_provider_logos 21