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

Side by Side Diff: chrome/browser/chromeos/status/network_menu_button.cc

Issue 4324001: Add proxy settings to network control at upper row of controls at login screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 10 years, 1 month 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
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 "chrome/browser/chromeos/status/network_menu_button.h" 5 #include "chrome/browser/chromeos/status/network_menu_button.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <limits> 8 #include <limits>
9 9
10 #include "app/l10n_util.h" 10 #include "app/l10n_util.h"
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 // NetworkMenuButton, NetworkMenu implementation: 180 // NetworkMenuButton, NetworkMenu implementation:
181 181
182 bool NetworkMenuButton::IsBrowserMode() const { 182 bool NetworkMenuButton::IsBrowserMode() const {
183 return host_->IsBrowserMode(); 183 return host_->IsBrowserMode();
184 } 184 }
185 185
186 gfx::NativeWindow NetworkMenuButton::GetNativeWindow() const { 186 gfx::NativeWindow NetworkMenuButton::GetNativeWindow() const {
187 return host_->GetNativeWindow(); 187 return host_->GetNativeWindow();
188 } 188 }
189 189
190 void NetworkMenuButton::OpenButtonOptions() const { 190 void NetworkMenuButton::OpenButtonOptions() {
191 host_->OpenButtonOptions(this); 191 host_->OpenButtonOptions(this);
192 } 192 }
193 193
194 bool NetworkMenuButton::ShouldOpenButtonOptions() const { 194 bool NetworkMenuButton::ShouldOpenButtonOptions() const {
195 return host_->ShouldOpenButtonOptions(this); 195 return host_->ShouldOpenButtonOptions(this);
196 } 196 }
197 197
198 } // namespace chromeos 198 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/status/network_menu_button.h ('k') | chrome/browser/chromeos/status/status_area_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698