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