OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "webkit/glue/plugins/webplugininfo.h" | 5 #include "webkit/plugins/npapi/webplugininfo.h" |
| 6 |
| 7 namespace webkit { |
| 8 namespace npapi { |
6 | 9 |
7 WebPluginMimeType::WebPluginMimeType() {} | 10 WebPluginMimeType::WebPluginMimeType() {} |
8 | 11 |
9 WebPluginMimeType::~WebPluginMimeType() {} | 12 WebPluginMimeType::~WebPluginMimeType() {} |
10 | 13 |
11 WebPluginInfo::WebPluginInfo() : enabled(false) {} | 14 WebPluginInfo::WebPluginInfo() : enabled(false) {} |
12 | 15 |
13 WebPluginInfo::WebPluginInfo(const WebPluginInfo& rhs) | 16 WebPluginInfo::WebPluginInfo(const WebPluginInfo& rhs) |
14 : name(rhs.name), | 17 : name(rhs.name), |
15 path(rhs.path), | 18 path(rhs.path), |
(...skipping 19 matching lines...) Expand all Loading... |
35 const string16& fake_version, | 38 const string16& fake_version, |
36 const string16& fake_desc) | 39 const string16& fake_desc) |
37 : name(fake_name), | 40 : name(fake_name), |
38 path(), | 41 path(), |
39 version(fake_version), | 42 version(fake_version), |
40 desc(fake_desc), | 43 desc(fake_desc), |
41 mime_types(), | 44 mime_types(), |
42 enabled(true) { | 45 enabled(true) { |
43 } | 46 } |
44 | 47 |
| 48 } // namespace npapi |
| 49 } // namespace webkit |
| 50 |
OLD | NEW |