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

Unified Diff: chrome/browser/chromeos/cros/network_library_impl_base.h

Issue 10826225: Clean-up inline members of nested classes (chrome/browser/chromeos/) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: forgotten files Created 8 years, 4 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
Index: chrome/browser/chromeos/cros/network_library_impl_base.h
diff --git a/chrome/browser/chromeos/cros/network_library_impl_base.h b/chrome/browser/chromeos/cros/network_library_impl_base.h
index bdbc54322dc6508d4eee7a34b78761222b01b3f2..f7a3c4d3bd006c2a137944d610606ab3437c2ee6 100644
--- a/chrome/browser/chromeos/cros/network_library_impl_base.h
+++ b/chrome/browser/chromeos/cros/network_library_impl_base.h
@@ -262,9 +262,8 @@ class NetworkLibraryImplBase : public NetworkLibrary {
std::set<std::string> > NetworkSourceMap;
struct NetworkProfile {
- NetworkProfile(const std::string& p, NetworkProfileType t)
- : path(p), type(t) {}
- ~NetworkProfile() {}
+ NetworkProfile(const std::string& p, NetworkProfileType t);
+ ~NetworkProfile();
std::string path;
NetworkProfileType type;
typedef std::set<std::string> ServiceList;
@@ -273,14 +272,8 @@ class NetworkLibraryImplBase : public NetworkLibrary {
typedef std::list<NetworkProfile> NetworkProfileList;
struct ConnectData {
- ConnectData() :
- security(SECURITY_NONE),
- eap_method(EAP_METHOD_UNKNOWN),
- eap_auth(EAP_PHASE_2_AUTH_AUTO),
- eap_use_system_cas(false),
- save_credentials(false),
- profile_type(PROFILE_NONE) {}
- ~ConnectData() {}
+ ConnectData();
+ ~ConnectData();
ConnectionSecurity security;
std::string service_name; // For example, SSID.
std::string username;
« no previous file with comments | « chrome/browser/chromeos/cros/network_library.cc ('k') | chrome/browser/chromeos/cros/network_library_impl_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698