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

Side by Side Diff: chrome/browser/plugins/plugin_metadata.cc

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months 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
« no previous file with comments | « chrome/browser/plugins/plugin_metadata.h ('k') | chrome/browser/plugins/plugin_observer.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/plugins/plugin_metadata.h" 5 #include "chrome/browser/plugins/plugin_metadata.h"
6 6
7 #include <stddef.h>
8
7 #include <algorithm> 9 #include <algorithm>
8 10
9 #include "base/logging.h" 11 #include "base/logging.h"
10 #include "base/strings/pattern.h" 12 #include "base/strings/pattern.h"
11 #include "base/strings/string_util.h" 13 #include "base/strings/string_util.h"
12 #include "content/public/common/webplugininfo.h" 14 #include "content/public/common/webplugininfo.h"
13 15
14 // static 16 // static
15 const char PluginMetadata::kAdobeReaderGroupName[] = "Adobe Reader"; 17 const char PluginMetadata::kAdobeReaderGroupName[] = "Adobe Reader";
16 const char PluginMetadata::kJavaGroupName[] = "Java(TM)"; 18 const char PluginMetadata::kJavaGroupName[] = "Java(TM)";
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 PluginMetadata* copy = new PluginMetadata(identifier_, 128 PluginMetadata* copy = new PluginMetadata(identifier_,
127 name_, 129 name_,
128 url_for_display_, 130 url_for_display_,
129 plugin_url_, 131 plugin_url_,
130 help_url_, 132 help_url_,
131 group_name_matcher_, 133 group_name_matcher_,
132 language_); 134 language_);
133 copy->versions_ = versions_; 135 copy->versions_ = versions_;
134 return make_scoped_ptr(copy); 136 return make_scoped_ptr(copy);
135 } 137 }
OLDNEW
« no previous file with comments | « chrome/browser/plugins/plugin_metadata.h ('k') | chrome/browser/plugins/plugin_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698