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

Unified Diff: chrome/browser/chromeos/cros/network_library.cc

Issue 7477008: Remove explicit keyword from multi-argument constructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/cros/burn_library.h ('k') | chrome/browser/chromeos/login/login_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/network_library.cc
diff --git a/chrome/browser/chromeos/cros/network_library.cc b/chrome/browser/chromeos/cros/network_library.cc
index d74e91cbe32c53564012967605a02fd7e9e33f87..f3f1d2d0b1ebad7c86e9bcfcc94878168624a347 100644
--- a/chrome/browser/chromeos/cros/network_library.cc
+++ b/chrome/browser/chromeos/cros/network_library.cc
@@ -430,7 +430,7 @@ class StringToEnum {
const Type value;
};
- explicit StringToEnum(const Pair* list, size_t num_entries, Type unknown)
+ StringToEnum(const Pair* list, size_t num_entries, Type unknown)
: unknown_value_(unknown) {
for (size_t i = 0; i < num_entries; ++i, ++list)
enum_map_[list->key] = list->value;
@@ -2695,7 +2695,7 @@ class NetworkLibraryImplBase : public NetworkLibrary {
typedef std::map<std::string, CellularDataPlanVector*> CellularDataPlanMap;
struct NetworkProfile {
- explicit NetworkProfile(const std::string& p, NetworkProfileType t)
+ NetworkProfile(const std::string& p, NetworkProfileType t)
: path(p), type(t) {}
std::string path;
NetworkProfileType type;
« no previous file with comments | « chrome/browser/chromeos/cros/burn_library.h ('k') | chrome/browser/chromeos/login/login_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698