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

Side by Side Diff: extensions/browser/component_extension_resource_manager.h

Issue 334053003: Moves extension_icon_image and image_loader to extensions/browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revive component_extension_resource_manager Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « extensions/browser/DEPS ('k') | extensions/browser/extension_icon_image.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef EXTENSIONS_BROWSER_COMPONENT_EXTENSION_RESOURCE_MANAGER_H_
6 #define EXTENSIONS_BROWSER_COMPONENT_EXTENSION_RESOURCE_MANAGER_H_
7
8 #include "base/files/file_path.h"
James Cook 2014/06/18 20:29:58 nit: You can forward declare base::FilePath.
Jun Mukai 2014/06/19 16:47:13 Done.
9
10 namespace extensions {
11
12 // This class manages which extension resources are actually come from
13 // the resource bundle.
14 class ComponentExtensionResourceManager {
15 public:
16 virtual ~ComponentExtensionResourceManager() {}
17
18 // Checks whether image is a component extension resource. Returns false
19 // if a given |resource| does not have a corresponding image in bundled
20 // resources. Otherwise fills |resource_id|. This doesn't check if the
21 // extension the resource is in is actually a component extension.
22 virtual bool IsComponentExtensionResource(
23 const base::FilePath& extension_path,
24 const base::FilePath& resource_path,
25 int* resource_id) = 0;
26 };
27
28 } // namespace extensions
29
30 #endif // EXTENSIONS_BROWSER_COMPONENT_EXTENSION_RESOURCE_MANAGER_H_
OLDNEW
« no previous file with comments | « extensions/browser/DEPS ('k') | extensions/browser/extension_icon_image.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698