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

Side by Side Diff: chrome/browser/component_updater/flash_component_installer.h

Issue 14099010: Move Version to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | « base/version.cc ('k') | chrome/browser/component_updater/pnacl/pnacl_component_installer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CHROME_BROWSER_COMPONENT_UPDATER_FLASH_COMPONENT_INSTALLER_H_ 5 #ifndef CHROME_BROWSER_COMPONENT_UPDATER_FLASH_COMPONENT_INSTALLER_H_
6 #define CHROME_BROWSER_COMPONENT_UPDATER_FLASH_COMPONENT_INSTALLER_H_ 6 #define CHROME_BROWSER_COMPONENT_UPDATER_FLASH_COMPONENT_INSTALLER_H_
7 7
8 class ComponentUpdateService; 8 class ComponentUpdateService;
9 class Version;
10 9
11 namespace base { 10 namespace base {
12 class DictionaryValue; 11 class DictionaryValue;
12 class Version;
13 } 13 }
14 14
15 // Our job is to 1) find what Pepper flash is installed (if any) and 2) register 15 // Our job is to 1) find what Pepper flash is installed (if any) and 2) register
16 // with the component updater to download the latest version when available. 16 // with the component updater to download the latest version when available.
17 // The first part is IO intensive so we do it asynchronously in the file thread. 17 // The first part is IO intensive so we do it asynchronously in the file thread.
18 void RegisterPepperFlashComponent(ComponentUpdateService* cus); 18 void RegisterPepperFlashComponent(ComponentUpdateService* cus);
19 19
20 // Returns true if this browser is compatible with the given Pepper Flash 20 // Returns true if this browser is compatible with the given Pepper Flash
21 // manifest, with the version specified in the manifest in |version_out|. 21 // manifest, with the version specified in the manifest in |version_out|.
22 bool CheckPepperFlashManifest(base::DictionaryValue* manifest, 22 bool CheckPepperFlashManifest(base::DictionaryValue* manifest,
23 Version* version_out); 23 base::Version* version_out);
24 24
25 #endif // CHROME_BROWSER_COMPONENT_UPDATER_FLASH_COMPONENT_INSTALLER_H_ 25 #endif // CHROME_BROWSER_COMPONENT_UPDATER_FLASH_COMPONENT_INSTALLER_H_
OLDNEW
« no previous file with comments | « base/version.cc ('k') | chrome/browser/component_updater/pnacl/pnacl_component_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698