| 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 WEBKIT_PLUGINS_NPAPI_PLUGIN_UTILS_H_ | 5 #ifndef WEBKIT_PLUGINS_NPAPI_PLUGIN_UTILS_H_ |
| 6 #define WEBKIT_PLUGINS_NPAPI_PLUGIN_UTILS_H_ | 6 #define WEBKIT_PLUGINS_NPAPI_PLUGIN_UTILS_H_ |
| 7 | 7 |
| 8 #include "base/string16.h" | 8 #include "base/string16.h" |
| 9 #include "webkit/plugins/webkit_plugins_export.h" | 9 #include "webkit/plugins/webkit_plugins_export.h" |
| 10 | 10 |
| 11 namespace base { |
| 11 class Version; | 12 class Version; |
| 13 } |
| 12 | 14 |
| 13 namespace webkit { | 15 namespace webkit { |
| 14 namespace npapi { | 16 namespace npapi { |
| 15 | 17 |
| 16 // Parse a version string as used by a plug-in. This method is more lenient | 18 // Parse a version string as used by a plug-in. This method is more lenient |
| 17 // in accepting weird version strings than Version::GetFromString() | 19 // in accepting weird version strings than base::Version::GetFromString() |
| 18 WEBKIT_PLUGINS_EXPORT void CreateVersionFromString( | 20 WEBKIT_PLUGINS_EXPORT void CreateVersionFromString( |
| 19 const base::string16& version_string, | 21 const base::string16& version_string, |
| 20 Version* parsed_version); | 22 base::Version* parsed_version); |
| 21 | 23 |
| 22 // Returns true iff NPAPI plugins are supported on the current platform. | 24 // Returns true iff NPAPI plugins are supported on the current platform. |
| 23 WEBKIT_PLUGINS_EXPORT bool NPAPIPluginsSupported(); | 25 WEBKIT_PLUGINS_EXPORT bool NPAPIPluginsSupported(); |
| 24 } // namespace npapi | 26 } // namespace npapi |
| 25 } // namespace webkit | 27 } // namespace webkit |
| 26 | 28 |
| 27 #endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_UTILS_H_ | 29 #endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_UTILS_H_ |
| OLD | NEW |