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

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

Issue 5918003: Bugfixes for recent PluginGroup refactoring. (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') | no next file » | 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/glue/plugins/webplugininfo.h"
6 6
7 WebPluginMimeType::WebPluginMimeType() {} 7 WebPluginMimeType::WebPluginMimeType() {}
8 8
9 WebPluginMimeType::~WebPluginMimeType() {} 9 WebPluginMimeType::~WebPluginMimeType() {}
10 10
(...skipping 14 matching lines...) Expand all
25 name = rhs.name; 25 name = rhs.name;
26 path = rhs.path; 26 path = rhs.path;
27 version = rhs.version; 27 version = rhs.version;
28 desc = rhs.desc; 28 desc = rhs.desc;
29 mime_types = rhs.mime_types; 29 mime_types = rhs.mime_types;
30 enabled = rhs.enabled; 30 enabled = rhs.enabled;
31 return *this; 31 return *this;
32 } 32 }
33 33
34 WebPluginInfo::WebPluginInfo(const string16& fake_name, 34 WebPluginInfo::WebPluginInfo(const string16& fake_name,
35 const FilePath& fake_path,
35 const string16& fake_version, 36 const string16& fake_version,
36 const string16& fake_desc) 37 const string16& fake_desc)
37 : name(fake_name), 38 : name(fake_name),
38 path(), 39 path(fake_path),
39 version(fake_version), 40 version(fake_version),
40 desc(fake_desc), 41 desc(fake_desc),
41 mime_types(), 42 mime_types(),
42 enabled(true) { 43 enabled(true) {
43 } 44 }
44 45
OLDNEW
« no previous file with comments | « webkit/glue/plugins/webplugininfo.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698