| Index: content/public/common/favicon_url.h
|
| diff --git a/chrome/common/favicon_url.h b/content/public/common/favicon_url.h
|
| similarity index 71%
|
| rename from chrome/common/favicon_url.h
|
| rename to content/public/common/favicon_url.h
|
| index 4da256be85bd1d4ca25c43635ec3a87270a2079f..b1d13cbfb8218afa941d0e58d5928066c855aeff 100644
|
| --- a/chrome/common/favicon_url.h
|
| +++ b/content/public/common/favicon_url.h
|
| @@ -2,13 +2,16 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_COMMON_FAVICON_URL_
|
| -#define CHROME_COMMON_FAVICON_URL_
|
| +#ifndef CONTENT_PUBLIC_COMMON_FAVICON_URL_
|
| +#define CONTENT_PUBLIC_COMMON_FAVICON_URL_
|
|
|
| +#include "content/common/content_export.h"
|
| #include "googleurl/src/gurl.h"
|
|
|
| +namespace content {
|
| +
|
| // The favicon url from the render.
|
| -struct FaviconURL {
|
| +struct CONTENT_EXPORT FaviconURL {
|
| // The icon type in a page. The definition must be same as history::IconType.
|
| enum IconType {
|
| INVALID_ICON = 0x0,
|
| @@ -28,4 +31,6 @@ struct FaviconURL {
|
| IconType icon_type;
|
| };
|
|
|
| -#endif // CHROME_COMMON_FAVICON_URL_
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_PUBLIC_COMMON_FAVICON_URL_
|
|
|