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

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

Issue 5998002: Revert "Move the NPAPI files from webkit/glue/plugins to webkit/plugins/npapi" (Closed) Base URL: svn://svn.chromium.org/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/glue/plugins/webplugininfo.h ('k') | webkit/glue/plugins/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/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
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
OLDNEW
« no previous file with comments | « webkit/glue/plugins/webplugininfo.h ('k') | webkit/glue/plugins/webview_plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698