Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2013 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 #ifndef CHROME_COMMON_FAVICON_URL_PARSER_H_ | |
| 6 #define CHROME_COMMON_FAVICON_URL_PARSER_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "ui/base/layout.h" | |
| 11 | |
| 12 namespace chrome { | |
| 13 | |
| 14 struct ParsedFaviconPath { | |
| 15 // Whether the URL has the "iconurl" parameter. | |
| 16 bool is_icon_url; | |
| 17 // The URL from which the favicon is being requested. | |
| 18 std::string url; | |
|
Evan Stade
2013/06/24 18:56:23
why is this not a GURL?
pedro (no code reviews)
2013/06/27 21:26:30
Favicons URLs in Instant Extended do not have the
| |
| 19 // The size of the requested favicon | |
| 20 int size_in_dip; | |
| 21 // The scale factor of the requested favicon | |
| 22 ui::ScaleFactor scale_factor; | |
| 23 // The index of the first character (relative to the path) where the the URL | |
| 24 // from which the favicon is being requested is located. | |
| 25 size_t path_index; | |
| 26 }; | |
| 27 | |
| 28 // Parses |path|, which should be in the format described at the top of the | |
| 29 // file "chrome/browser/ui/webui/favicon_source.h". |icon_types| indicates | |
| 30 // which icon types are supported. Returns true if |path| could be parsed. | |
| 31 // The result of the parsing will be stored in a ParsedFaviconPath struct. | |
| 32 bool ParseFaviconPath(const std::string& path, | |
| 33 int icon_types, | |
| 34 ParsedFaviconPath* parsed); | |
| 35 | |
| 36 } // namespace chrome | |
| 37 | |
| 38 #endif // CHROME_COMMON_FAVICON_URL_PARSER_H_ | |
| OLD | NEW |