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

Unified Diff: ash/shell.cc

Issue 9664056: ash uber tray: Add the detailed network popup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 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 side-by-side diff with in-line comments
Download patch
Index: ash/shell.cc
diff --git a/ash/shell.cc b/ash/shell.cc
index ae5ffab6a160c972ab0b46c557cb8350482dca60..55b9580e3f225268bb163e1a5139b677e721c381 100644
--- a/ash/shell.cc
+++ b/ash/shell.cc
@@ -244,6 +244,9 @@ class DummySystemTrayDelegate : public SystemTrayDelegate {
virtual void ShowDateSettings() OVERRIDE {
}
+ virtual void ShowNetworkSettings() OVERRIDE {
+ }
+
virtual void ShowHelp() OVERRIDE {
}
@@ -266,9 +269,21 @@ class DummySystemTrayDelegate : public SystemTrayDelegate {
virtual void ShutDown() OVERRIDE {}
virtual void SignOut() OVERRIDE {}
virtual void RequestLockScreen() OVERRIDE {}
- virtual NetworkIconInfo GetMostRelevantNetworkIcon() {
+ virtual NetworkIconInfo GetMostRelevantNetworkIcon(bool large) OVERRIDE {
return NetworkIconInfo();
}
+ virtual void GetAvailableNetworks(
+ std::vector<NetworkIconInfo>* list) OVERRIDE {
+ }
+
+ virtual void ConnectToNetwork(const std::string& network_id) OVERRIDE {
+ }
+
+ virtual void ToggleAirplaneMode() OVERRIDE {
+ }
+
+ virtual void ChangeProxySettings() OVERRIDE {
+ }
bool muted_;
float volume_;

Powered by Google App Engine
This is Rietveld 408576698