summaryrefslogtreecommitdiffstats
path: root/components/search_provider_logos/logo_common.cc
diff options
context:
space:
mode:
authornewt@chromium.org <newt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-30 21:55:16 +0000
committernewt@chromium.org <newt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-30 21:55:16 +0000
commit12fad44d9e65df34ef7f71f53bf16e0d429a8aff (patch)
treed2199704d6e10040a68faba57c4ee89bbf02994a /components/search_provider_logos/logo_common.cc
parent09bd7bc27cf7544bdfb58fe0e21465b6485d599e (diff)
downloadchromium_src-12fad44d9e65df34ef7f71f53bf16e0d429a8aff.zip
chromium_src-12fad44d9e65df34ef7f71f53bf16e0d429a8aff.tar.gz
chromium_src-12fad44d9e65df34ef7f71f53bf16e0d429a8aff.tar.bz2
Add LogoTracker to fetch search providers' logos.
The LogoTracker keeps track of the logo for a search provider. The logo is downloaded, cached on disk, and periodically revalidated. This code lives inside a component (search_provider_logos) so it can be used on both Android and iOS. BUG=178922 NOTRY=true Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=267314 Review URL: https://codereview.chromium.org/162373002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267349 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/search_provider_logos/logo_common.cc')
-rw-r--r--components/search_provider_logos/logo_common.cc20
1 files changed, 20 insertions, 0 deletions
diff --git a/components/search_provider_logos/logo_common.cc b/components/search_provider_logos/logo_common.cc
new file mode 100644
index 0000000..322aed5
--- /dev/null
+++ b/components/search_provider_logos/logo_common.cc
@@ -0,0 +1,20 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/search_provider_logos/logo_common.h"
+
+namespace search_provider_logos {
+
+const int64 kMaxTimeToLiveMS = GG_INT64_C(30 * 24 * 60 * 60 * 1000); // 30 days
+
+LogoMetadata::LogoMetadata() : can_show_after_expiration(false) {}
+LogoMetadata::~LogoMetadata() {}
+
+EncodedLogo::EncodedLogo() {}
+EncodedLogo::~EncodedLogo() {}
+
+Logo::Logo() {}
+Logo::~Logo() {}
+
+} // namespace search_provider_logos