Chromium Code Reviews| Index: webkit/plugins/npapi/plugin_utils.h |
| diff --git a/webkit/plugins/npapi/plugin_utils.h b/webkit/plugins/npapi/plugin_utils.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f72e1824a49da3f2881ffb777d6731e8b8930082 |
| --- /dev/null |
| +++ b/webkit/plugins/npapi/plugin_utils.h |
| @@ -0,0 +1,25 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef WEBKIT_PLUGINS_NPAPI_PLUGIN_UTILS_H_ |
| +#define WEBKIT_PLUGINS_NPAPI_PLUGIN_UTILS_H_ |
| + |
| +#include "base/string16.h" |
| +#include "webkit/plugins/webkit_plugins_export.h" |
| + |
| +class Version; |
| + |
| +namespace webkit { |
| +namespace npapi { |
| + |
| +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.
|
| + const string16& version_string, |
| + Version* parsed_version); |
| + |
| +} // namespace npapi |
| +} // namespace webkit |
| + |
| + |
|
jam
2012/09/04 16:46:40
nit: just need one blank line, not 3
ibraaaa
2012/09/04 17:00:34
Done.
|
| + |
| +#endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_UTILS_H_ |