Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: webkit/plugins/npapi/webplugininfo.cc

Issue 6012002: Move the NPAPI files from webkit/glue/plugins to webkit/plugins/npapi and put... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/plugins/npapi/webplugininfo.h ('k') | webkit/plugins/npapi/webview_plugin.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « webkit/plugins/npapi/webplugininfo.h ('k') | webkit/plugins/npapi/webview_plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698