diff options
author | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-23 13:29:41 +0000 |
---|---|---|
committer | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-23 13:29:41 +0000 |
commit | 0994fce90eb8931a0f166bb8c0d3acad88933590 (patch) | |
tree | ac4545955d7ae97b7e280e9ae55860aeb78c111b /ash/shell.cc | |
parent | 156ffc413ec10ccaafcf580117dae6b378cb4b18 (diff) | |
download | chromium_src-0994fce90eb8931a0f166bb8c0d3acad88933590.zip chromium_src-0994fce90eb8931a0f166bb8c0d3acad88933590.tar.gz chromium_src-0994fce90eb8931a0f166bb8c0d3acad88933590.tar.bz2 |
ash: Allow connecting to unlisted networks and visit the top-up url from the tray network popup.
BUG=109480
TEST=none
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=128462
Review URL: https://chromiumcodereview.appspot.com/9838002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128470 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell.cc')
-rw-r--r-- | ash/shell.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ash/shell.cc b/ash/shell.cc index f70a499..79ca48c 100644 --- a/ash/shell.cc +++ b/ash/shell.cc @@ -409,6 +409,12 @@ class DummySystemTrayDelegate : public SystemTrayDelegate { observer->OnBluetoothRefresh(); } + virtual void ShowOtherWifi() OVERRIDE { + } + + virtual void ShowOtherCellular() OVERRIDE { + } + virtual bool GetWifiAvailable() OVERRIDE { return true; } @@ -433,6 +439,18 @@ class DummySystemTrayDelegate : public SystemTrayDelegate { return bluetooth_enabled_; } + virtual bool GetCellularScanSupported() OVERRIDE { + return true; + } + + virtual bool GetCellularCarrierInfo(std::string* carrier_id, + std::string* toup_url) OVERRIDE { + return false; + } + + virtual void ShowCellularTopupURL(const std::string& topup_url) OVERRIDE { + } + virtual void ChangeProxySettings() OVERRIDE { } |