flash_component_installer.h revision 5821806d5e7f356e8fa4b058a389a808ea183019
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
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_COMPONENT_UPDATER_FLASH_COMPONENT_INSTALLER_H_
6#define CHROME_BROWSER_COMPONENT_UPDATER_FLASH_COMPONENT_INSTALLER_H_
7
8class ComponentUpdateService;
9class Version;
10
11namespace base {
12class DictionaryValue;
13}
14
15// Component update registration for built-in flash player (non-Pepper).
16void RegisterNPAPIFlashComponent(ComponentUpdateService* cus);
17
18// Our job is to 1) find what Pepper flash is installed (if any) and 2) register
19// with the component updater to download the latest version when available.
20// The first part is IO intensive so we do it asynchronously in the file thread.
21void RegisterPepperFlashComponent(ComponentUpdateService* cus);
22
23// Returns true if this browser is compatible with the given Pepper Flash
24// manifest, with the version specified in the manifest in |version_out|.
25bool CheckPepperFlashManifest(base::DictionaryValue* manifest,
26                              Version* version_out);
27
28#endif  // CHROME_BROWSER_COMPONENT_UPDATER_FLASH_COMPONENT_INSTALLER_H_
29