diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-22 07:35:50 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-22 07:35:50 +0000 |
commit | 1f04ef4db936365c0cc1990f1a2b8a7bbbe37653 (patch) | |
tree | 571f9feea8ed976c01a7bd1cf56cee9894d5c005 /webkit | |
parent | 9246e364afd394dd3a7cc2bf838c7ea0b4fc1133 (diff) | |
download | chromium_src-1f04ef4db936365c0cc1990f1a2b8a7bbbe37653.zip chromium_src-1f04ef4db936365c0cc1990f1a2b8a7bbbe37653.tar.gz chromium_src-1f04ef4db936365c0cc1990f1a2b8a7bbbe37653.tar.bz2 |
Move Version to base namespace.
Adds "using base::Version" to the header to avoid having to update everything at
once. All forward declares and the locations where the forward declares are
used are updated.
Review URL: https://chromiumcodereview.appspot.com/14099010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@195456 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/plugins/npapi/plugin_utils.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webkit/plugins/npapi/plugin_utils.h b/webkit/plugins/npapi/plugin_utils.h index 438e879..8fe1b13 100644 --- a/webkit/plugins/npapi/plugin_utils.h +++ b/webkit/plugins/npapi/plugin_utils.h @@ -8,16 +8,18 @@ #include "base/string16.h" #include "webkit/plugins/webkit_plugins_export.h" +namespace base { class Version; +} namespace webkit { namespace npapi { // Parse a version string as used by a plug-in. This method is more lenient -// in accepting weird version strings than Version::GetFromString() +// in accepting weird version strings than base::Version::GetFromString() WEBKIT_PLUGINS_EXPORT void CreateVersionFromString( const base::string16& version_string, - Version* parsed_version); + base::Version* parsed_version); // Returns true iff NPAPI plugins are supported on the current platform. WEBKIT_PLUGINS_EXPORT bool NPAPIPluginsSupported(); |