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

Side by Side Diff: components/search_provider_logos/google_logo_api.h

Issue 2760003002: [Home] Use white doodle background when Chrome Home is enabled (Closed)
Patch Set: Update ios/chrome/browser/google/google_logo_service.mm Created 3 years, 9 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 #ifndef COMPONENTS_SEARCH_PROVIDER_LOGOS_GOOGLE_LOGO_API_H_ 5 #ifndef COMPONENTS_SEARCH_PROVIDER_LOGOS_GOOGLE_LOGO_API_H_
6 #define COMPONENTS_SEARCH_PROVIDER_LOGOS_GOOGLE_LOGO_API_H_ 6 #define COMPONENTS_SEARCH_PROVIDER_LOGOS_GOOGLE_LOGO_API_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
11 #include "base/time/time.h" 11 #include "base/time/time.h"
12 #include "components/search_provider_logos/logo_common.h" 12 #include "components/search_provider_logos/logo_common.h"
13 #include "url/gurl.h" 13 #include "url/gurl.h"
14 14
15 namespace search_provider_logos { 15 namespace search_provider_logos {
16 16
17 // Implements AppendFingerprintToLogoURL, defined in logo_tracker.h, for Google 17 // Implements AppendFingerprintToLogoURL, defined in logo_tracker.h, for Google
18 // doodles. 18 // doodles.
19 GURL GoogleAppendQueryparamsToLogoURL(const GURL& logo_url, 19 GURL GoogleAppendQueryparamsToLogoURL(const GURL& logo_url,
20 const std::string& fingerprint, 20 const std::string& fingerprint,
21 bool wants_cta, 21 bool wants_cta,
22 bool transparent); 22 bool gray_background);
23 23
24 // Implements ParseLogoResponse, defined in logo_tracker.h, for Google doodles. 24 // Implements ParseLogoResponse, defined in logo_tracker.h, for Google doodles.
25 std::unique_ptr<EncodedLogo> GoogleParseLogoResponse( 25 std::unique_ptr<EncodedLogo> GoogleParseLogoResponse(
26 const std::unique_ptr<std::string>& response, 26 const std::unique_ptr<std::string>& response,
27 base::Time response_time, 27 base::Time response_time,
28 bool* parsing_failed); 28 bool* parsing_failed);
29 29
30 } // namespace search_provider_logos 30 } // namespace search_provider_logos
31 31
32 #endif // COMPONENTS_SEARCH_PROVIDER_LOGOS_GOOGLE_LOGO_API_H_ 32 #endif // COMPONENTS_SEARCH_PROVIDER_LOGOS_GOOGLE_LOGO_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698