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

Side by Side Diff: chrome/browser/ui/webui/options/chromeos/internet_options_handler.h

Issue 983823002: Use GUID instead of servicePath in network settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_430115_internet_options_enable_extension_apis
Patch Set: Feedback Created 5 years, 9 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
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 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 // Creates the map of virtual networks. 108 // Creates the map of virtual networks.
109 base::ListValue* GetVPNList(); 109 base::ListValue* GetVPNList();
110 110
111 // Creates the map of remembered networks. 111 // Creates the map of remembered networks.
112 base::ListValue* GetRememberedList(); 112 base::ListValue* GetRememberedList();
113 113
114 // Fills network information into JS dictionary for displaying network lists. 114 // Fills network information into JS dictionary for displaying network lists.
115 void FillNetworkInfo(base::DictionaryValue* dictionary); 115 void FillNetworkInfo(base::DictionaryValue* dictionary);
116 116
117 // Keep track of the service path for the network shown in the Details view. 117 // Keep track of the service path for the network shown in the Details view.
118 std::string details_path_; 118 std::string details_guid_;
pneubeck (no reviews) 2015/03/13 09:54:20 I guess you tested something here. Not used.
stevenjb 2015/03/13 17:01:14 Oops, thanks. I thought I could do this easily usi
119 119
120 // Weak pointer factory so we can start connections at a later time 120 // Weak pointer factory so we can start connections at a later time
121 // without worrying that they will actually try to happen after the lifetime 121 // without worrying that they will actually try to happen after the lifetime
122 // of this object. 122 // of this object.
123 base::WeakPtrFactory<InternetOptionsHandler> weak_factory_; 123 base::WeakPtrFactory<InternetOptionsHandler> weak_factory_;
124 124
125 DISALLOW_COPY_AND_ASSIGN(InternetOptionsHandler); 125 DISALLOW_COPY_AND_ASSIGN(InternetOptionsHandler);
126 }; 126 };
127 127
128 } // namespace options 128 } // namespace options
129 } // namespace chromeos 129 } // namespace chromeos
130 130
131 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_ 131 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_INTERNET_OPTIONS_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698