OLD | NEW |
---|---|
(Empty) | |
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 WEBKIT_PLUGINS_NPAPI_PLUGIN_UTILS_H_ | |
6 #define WEBKIT_PLUGINS_NPAPI_PLUGIN_UTILS_H_ | |
7 | |
8 #include "base/string16.h" | |
9 #include "webkit/plugins/webkit_plugins_export.h" | |
10 | |
11 class Version; | |
12 | |
13 namespace webkit { | |
14 namespace npapi { | |
15 | |
16 WEBKIT_PLUGINS_EXPORT void CreateVersionFromString( | |
jam
2012/09/04 16:46:40
nit: bring over the comment as well
ibraaaa
2012/09/04 17:00:34
Done.
| |
17 const string16& version_string, | |
18 Version* parsed_version); | |
19 | |
20 } // namespace npapi | |
21 } // namespace webkit | |
22 | |
23 | |
jam
2012/09/04 16:46:40
nit: just need one blank line, not 3
ibraaaa
2012/09/04 17:00:34
Done.
| |
24 | |
25 #endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_UTILS_H_ | |
OLD | NEW |