| Index: extensions/common/manifest_handlers/icons_handler.h
|
| diff --git a/chrome/common/extensions/manifest_handlers/icons_handler.h b/extensions/common/manifest_handlers/icons_handler.h
|
| similarity index 82%
|
| rename from chrome/common/extensions/manifest_handlers/icons_handler.h
|
| rename to extensions/common/manifest_handlers/icons_handler.h
|
| index 9c4d42f50ee7a3faf3d2ce8076cd914515fd05a8..f8f35977dba82457d4eba9a050f3ec0bfa1b8233 100644
|
| --- a/chrome/common/extensions/manifest_handlers/icons_handler.h
|
| +++ b/extensions/common/manifest_handlers/icons_handler.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_ICONS_HANDLER_H_
|
| -#define CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_ICONS_HANDLER_H_
|
| +#ifndef EXTENSIONS_COMMON_MANIFEST_HANDLERS_ICONS_HANDLER_H_
|
| +#define EXTENSIONS_COMMON_MANIFEST_HANDLERS_ICONS_HANDLER_H_
|
|
|
| #include <string>
|
|
|
| @@ -12,13 +12,15 @@
|
| #include "extensions/common/extension_resource.h"
|
| #include "extensions/common/manifest_handler.h"
|
|
|
| +class GURL;
|
| +
|
| +namespace gfx {
|
| +class ImageSkia;
|
| +}
|
| +
|
| namespace extensions {
|
|
|
| struct IconsInfo : public Extension::ManifestData {
|
| - // Max size (both dimensions) for browser and page actions.
|
| - static const int kPageActionIconMaxSize;
|
| - static const int kBrowserActionIconMaxSize;
|
| -
|
| // The icons for the extension.
|
| ExtensionIconSet icons;
|
|
|
| @@ -57,4 +59,4 @@ class IconsHandler : public ManifestHandler {
|
|
|
| } // namespace extensions
|
|
|
| -#endif // CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_ICONS_HANDLER_H_
|
| +#endif // EXTENSIONS_COMMON_MANIFEST_HANDLERS_ICONS_HANDLER_H_
|
|
|