OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 WEBKIT_DEFAULT_PLUGIN_PLUGIN_DATABASE_HANDLER_H | 5 #ifndef CHROME_DEFAULT_PLUGIN_PLUGIN_DATABASE_HANDLER_H_ |
6 #define WEBKIT_DEFAULT_PLUGIN_PLUGIN_DATABASE_HANDLER_H | 6 #define CHROME_DEFAULT_PLUGIN_PLUGIN_DATABASE_HANDLER_H_ |
7 | 7 |
8 #include <windows.h> | 8 #include <windows.h> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "third_party/npapi/bindings/npapi.h" | 13 #include "third_party/npapi/bindings/npapi.h" |
14 | 14 |
15 // Individual plugin details | 15 // Individual plugin details |
16 struct PluginDetail { | 16 struct PluginDetail { |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 // The plugin finder url | 146 // The plugin finder url |
147 std::string plugin_finder_url_; | 147 std::string plugin_finder_url_; |
148 // Set if the current instance should ignore plugin data. This is required | 148 // Set if the current instance should ignore plugin data. This is required |
149 // if multiple null plugin instances attempt to download the plugin | 149 // if multiple null plugin instances attempt to download the plugin |
150 // database. In this case the first instance to create the plugins database | 150 // database. In this case the first instance to create the plugins database |
151 // file locally writes to the file. The remaining instances ignore the | 151 // file locally writes to the file. The remaining instances ignore the |
152 // downloaded data. | 152 // downloaded data. |
153 bool ignore_plugin_db_data_; | 153 bool ignore_plugin_db_data_; |
154 }; | 154 }; |
155 | 155 |
156 #endif // WEBKIT_DEFAULT_PLUGIN_PLUGIN_DATABASE_DOWNLOAD_HANDLER_H | 156 #endif // CHROME_DEFAULT_PLUGIN_PLUGIN_DATABASE_HANDLER_H_ |
OLD | NEW |