OLD | NEW |
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/shell.h" | 5 #include "ash/shell.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "ash/app_list/app_list.h" | 9 #include "ash/app_list/app_list.h" |
10 #include "ash/ash_switches.h" | 10 #include "ash/ash_switches.h" |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 | 302 |
303 virtual void ShowDateSettings() OVERRIDE { | 303 virtual void ShowDateSettings() OVERRIDE { |
304 } | 304 } |
305 | 305 |
306 virtual void ShowNetworkSettings() OVERRIDE { | 306 virtual void ShowNetworkSettings() OVERRIDE { |
307 } | 307 } |
308 | 308 |
309 virtual void ShowBluetoothSettings() OVERRIDE { | 309 virtual void ShowBluetoothSettings() OVERRIDE { |
310 } | 310 } |
311 | 311 |
312 virtual void ShowDriveSettings() OVERRIDE { | |
313 } | |
314 | |
315 virtual void ShowIMESettings() OVERRIDE { | 312 virtual void ShowIMESettings() OVERRIDE { |
316 } | 313 } |
317 | 314 |
318 virtual void ShowHelp() OVERRIDE { | 315 virtual void ShowHelp() OVERRIDE { |
319 } | 316 } |
320 | 317 |
321 virtual bool IsAudioMuted() const OVERRIDE { | 318 virtual bool IsAudioMuted() const OVERRIDE { |
322 return muted_; | 319 return muted_; |
323 } | 320 } |
324 | 321 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 | 368 |
372 virtual void GetCurrentIMEProperties(IMEPropertyInfoList* list) OVERRIDE { | 369 virtual void GetCurrentIMEProperties(IMEPropertyInfoList* list) OVERRIDE { |
373 } | 370 } |
374 | 371 |
375 virtual void SwitchIME(const std::string& ime_id) OVERRIDE { | 372 virtual void SwitchIME(const std::string& ime_id) OVERRIDE { |
376 } | 373 } |
377 | 374 |
378 virtual void ActivateIMEProperty(const std::string& key) OVERRIDE { | 375 virtual void ActivateIMEProperty(const std::string& key) OVERRIDE { |
379 } | 376 } |
380 | 377 |
381 virtual void CancelDriveOperation(const FilePath&) OVERRIDE { | |
382 } | |
383 | |
384 virtual void GetDriveOperationStatusList( | |
385 ash::DriveOperationStatusList*) OVERRIDE { | |
386 } | |
387 | |
388 virtual void GetMostRelevantNetworkIcon(NetworkIconInfo* info, | 378 virtual void GetMostRelevantNetworkIcon(NetworkIconInfo* info, |
389 bool large) OVERRIDE { | 379 bool large) OVERRIDE { |
390 } | 380 } |
391 | 381 |
392 virtual void GetAvailableNetworks( | 382 virtual void GetAvailableNetworks( |
393 std::vector<NetworkIconInfo>* list) OVERRIDE { | 383 std::vector<NetworkIconInfo>* list) OVERRIDE { |
394 } | 384 } |
395 | 385 |
396 virtual void ConnectToNetwork(const std::string& network_id) OVERRIDE { | 386 virtual void ConnectToNetwork(const std::string& network_id) OVERRIDE { |
397 } | 387 } |
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
928 panel_container->SetLayoutManager(panel_layout_manager_); | 918 panel_container->SetLayoutManager(panel_layout_manager_); |
929 } | 919 } |
930 } | 920 } |
931 | 921 |
932 void Shell::DisableWorkspaceGridLayout() { | 922 void Shell::DisableWorkspaceGridLayout() { |
933 if (workspace_controller_.get()) | 923 if (workspace_controller_.get()) |
934 workspace_controller_->workspace_manager()->set_grid_size(0); | 924 workspace_controller_->workspace_manager()->set_grid_size(0); |
935 } | 925 } |
936 | 926 |
937 } // namespace ash | 927 } // namespace ash |
OLD | NEW |