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

Side by Side Diff: ash/system/tray/test_system_tray_delegate.cc

Issue 19744003: Change "Add Device" button to "Manage Devices" on ash tray bluetooth page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
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 #include "ash/system/tray/test_system_tray_delegate.h" 5 #include "ash/system/tray/test_system_tray_delegate.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "ash/session_state_delegate.h" 9 #include "ash/session_state_delegate.h"
10 #include "ash/shell.h" 10 #include "ash/shell.h"
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 void TestSystemTrayDelegate::GetDriveOperationStatusList( 220 void TestSystemTrayDelegate::GetDriveOperationStatusList(
221 ash::DriveOperationStatusList*) { 221 ash::DriveOperationStatusList*) {
222 } 222 }
223 223
224 void TestSystemTrayDelegate::ConfigureNetwork(const std::string& network_id) { 224 void TestSystemTrayDelegate::ConfigureNetwork(const std::string& network_id) {
225 } 225 }
226 226
227 void TestSystemTrayDelegate::ConnectToNetwork(const std::string& network_id) { 227 void TestSystemTrayDelegate::ConnectToNetwork(const std::string& network_id) {
228 } 228 }
229 229
230 void TestSystemTrayDelegate::AddBluetoothDevice() { 230 void TestSystemTrayDelegate::ManageBluetoothDevices() {
231 } 231 }
232 232
233 void TestSystemTrayDelegate::ToggleBluetooth() { 233 void TestSystemTrayDelegate::ToggleBluetooth() {
234 bluetooth_enabled_ = !bluetooth_enabled_; 234 bluetooth_enabled_ = !bluetooth_enabled_;
235 } 235 }
236 236
237 bool TestSystemTrayDelegate::IsBluetoothDiscovering() { 237 bool TestSystemTrayDelegate::IsBluetoothDiscovering() {
238 return false; 238 return false;
239 } 239 }
240 240
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 base::string16 TestSystemTrayDelegate::FormatTimeDuration( 298 base::string16 TestSystemTrayDelegate::FormatTimeDuration(
299 const base::TimeDelta& delta) const { 299 const base::TimeDelta& delta) const {
300 return base::string16(); 300 return base::string16();
301 } 301 }
302 302
303 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const { 303 void TestSystemTrayDelegate::MaybeSpeak(const std::string& utterance) const {
304 } 304 }
305 305
306 } // namespace test 306 } // namespace test
307 } // namespace ash 307 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698