OLD | NEW |
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_PLUGIN_INSTALLER_H_ | 5 #ifndef CHROME_BROWSER_PLUGINS_PLUGIN_INSTALLER_H_ |
6 #define CHROME_BROWSER_PLUGIN_INSTALLER_H_ | 6 #define CHROME_BROWSER_PLUGINS_PLUGIN_INSTALLER_H_ |
7 | 7 |
8 #include "base/observer_list.h" | 8 #include "base/observer_list.h" |
9 #include "base/string16.h" | 9 #include "base/string16.h" |
10 #include "base/version.h" | 10 #include "base/version.h" |
11 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
12 #include "content/public/browser/download_id.h" | 12 #include "content/public/browser/download_id.h" |
13 #include "content/public/browser/download_item.h" | 13 #include "content/public/browser/download_item.h" |
14 #include "net/base/net_errors.h" | 14 #include "net/base/net_errors.h" |
15 | 15 |
16 class FilePath; | 16 class FilePath; |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 GURL help_url_; | 118 GURL help_url_; |
119 std::map<Version, SecurityStatus, VersionComparator> versions_; | 119 std::map<Version, SecurityStatus, VersionComparator> versions_; |
120 | 120 |
121 InstallerState state_; | 121 InstallerState state_; |
122 ObserverList<PluginInstallerObserver> observers_; | 122 ObserverList<PluginInstallerObserver> observers_; |
123 ObserverList<WeakPluginInstallerObserver> weak_observers_; | 123 ObserverList<WeakPluginInstallerObserver> weak_observers_; |
124 | 124 |
125 DISALLOW_COPY_AND_ASSIGN(PluginInstaller); | 125 DISALLOW_COPY_AND_ASSIGN(PluginInstaller); |
126 }; | 126 }; |
127 | 127 |
128 #endif // CHROME_BROWSER_PLUGIN_INSTALLER_H_ | 128 #endif // CHROME_BROWSER_PLUGINS_PLUGIN_INSTALLER_H_ |
OLD | NEW |