From ab0a50979b9eb4dfa3320eff7e187e41efedf7a9 Mon Sep 17 00:00:00 2001 From: Jocelyn Turcotte Date: Fri, 8 Aug 2014 14:30:41 +0200 Subject: Update Chromium to beta version 37.0.2062.68 Change-Id: I188e3b5aff1bec75566014291b654eb19f5bc8ca Reviewed-by: Andras Becsi --- .../system/tray/default_system_tray_delegate.cc | 279 --------------------- 1 file changed, 279 deletions(-) delete mode 100644 chromium/ash/system/tray/default_system_tray_delegate.cc (limited to 'chromium/ash/system/tray/default_system_tray_delegate.cc') diff --git a/chromium/ash/system/tray/default_system_tray_delegate.cc b/chromium/ash/system/tray/default_system_tray_delegate.cc deleted file mode 100644 index 37836f0277f..00000000000 --- a/chromium/ash/system/tray/default_system_tray_delegate.cc +++ /dev/null @@ -1,279 +0,0 @@ -// Copyright 2013 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "ash/system/tray/default_system_tray_delegate.h" - -#include - -#include "ash/session_state_delegate.h" -#include "ash/shell.h" -#include "ash/volume_control_delegate.h" -#include "base/message_loop/message_loop.h" -#include "base/time/time.h" - -namespace ash { - -namespace { - -class DefaultVolumnControlDelegate : public VolumeControlDelegate { - public: - DefaultVolumnControlDelegate() {} - virtual ~DefaultVolumnControlDelegate() {} - - virtual bool HandleVolumeMute(const ui::Accelerator& accelerator) OVERRIDE { - return true; - } - virtual bool HandleVolumeDown(const ui::Accelerator& accelerator) OVERRIDE { - return true; - } - virtual bool HandleVolumeUp(const ui::Accelerator& accelerator) OVERRIDE { - return true; - } - - private: - DISALLOW_COPY_AND_ASSIGN(DefaultVolumnControlDelegate); -}; - -} // namespace - -DefaultSystemTrayDelegate::DefaultSystemTrayDelegate() - : bluetooth_enabled_(true), - volume_control_delegate_(new DefaultVolumnControlDelegate) { -} - -DefaultSystemTrayDelegate::~DefaultSystemTrayDelegate() { -} - -void DefaultSystemTrayDelegate::Initialize() { -} - -void DefaultSystemTrayDelegate::Shutdown() { -} - -bool DefaultSystemTrayDelegate::GetTrayVisibilityOnStartup() { - return true; -} - -user::LoginStatus DefaultSystemTrayDelegate::GetUserLoginStatus() const { - return user::LOGGED_IN_USER; -} - -bool DefaultSystemTrayDelegate::IsOobeCompleted() const { - return true; -} - -void DefaultSystemTrayDelegate::ChangeProfilePicture() { -} - -const std::string DefaultSystemTrayDelegate::GetEnterpriseDomain() const { - return std::string(); -} - -const base::string16 DefaultSystemTrayDelegate::GetEnterpriseMessage() const { - return string16(); -} - -const std::string -DefaultSystemTrayDelegate::GetLocallyManagedUserManager() const { - return std::string(); -} - -const base::string16 -DefaultSystemTrayDelegate::GetLocallyManagedUserManagerName() - const { - return string16(); -} - -const base::string16 DefaultSystemTrayDelegate::GetLocallyManagedUserMessage() - const { - return string16(); -} - -bool DefaultSystemTrayDelegate::SystemShouldUpgrade() const { - return true; -} - -base::HourClockType DefaultSystemTrayDelegate::GetHourClockType() const { - return base::k24HourClock; -} - -void DefaultSystemTrayDelegate::ShowSettings() { -} - -bool DefaultSystemTrayDelegate::ShouldShowSettings() { - return true; -} - -void DefaultSystemTrayDelegate::ShowDateSettings() { -} - -void DefaultSystemTrayDelegate::ShowNetworkSettings( - const std::string& service_path) { -} - -void DefaultSystemTrayDelegate::ShowBluetoothSettings() { -} - -void DefaultSystemTrayDelegate::ShowDisplaySettings() { -} - -void DefaultSystemTrayDelegate::ShowChromeSlow() { -} - -bool DefaultSystemTrayDelegate::ShouldShowDisplayNotification() { - return false; -} - -void DefaultSystemTrayDelegate::ShowDriveSettings() { -} - -void DefaultSystemTrayDelegate::ShowIMESettings() { -} - -void DefaultSystemTrayDelegate::ShowHelp() { -} - -void DefaultSystemTrayDelegate::ShowAccessibilityHelp() { -} - -void DefaultSystemTrayDelegate::ShowAccessibilitySettings() { -} - -void DefaultSystemTrayDelegate::ShowPublicAccountInfo() { -} - -void DefaultSystemTrayDelegate::ShowEnterpriseInfo() { -} - -void DefaultSystemTrayDelegate::ShowLocallyManagedUserInfo() { -} - -void DefaultSystemTrayDelegate::ShowUserLogin() { -} - -void DefaultSystemTrayDelegate::ShowSpringChargerReplacementDialog() { -} - -bool DefaultSystemTrayDelegate::HasUserConfirmedSafeSpringCharger() { - return false; -} - -void DefaultSystemTrayDelegate::ShutDown() { -} - -void DefaultSystemTrayDelegate::SignOut() { -} - -void DefaultSystemTrayDelegate::RequestLockScreen() { -} - -void DefaultSystemTrayDelegate::RequestRestartForUpdate() { -} - -void DefaultSystemTrayDelegate::GetAvailableBluetoothDevices( - BluetoothDeviceList* list) { -} - -void DefaultSystemTrayDelegate::BluetoothStartDiscovering() { -} - -void DefaultSystemTrayDelegate::BluetoothStopDiscovering() { -} - -void DefaultSystemTrayDelegate::ConnectToBluetoothDevice( - const std::string& address) { -} - -void DefaultSystemTrayDelegate::GetCurrentIME(IMEInfo* info) { -} - -void DefaultSystemTrayDelegate::GetAvailableIMEList(IMEInfoList* list) { -} - -void DefaultSystemTrayDelegate::GetCurrentIMEProperties( - IMEPropertyInfoList* list) { -} - -void DefaultSystemTrayDelegate::SwitchIME(const std::string& ime_id) { -} - -void DefaultSystemTrayDelegate::ActivateIMEProperty(const std::string& key) { -} - -void DefaultSystemTrayDelegate::CancelDriveOperation(int32 operation_id) { -} - -void DefaultSystemTrayDelegate::GetDriveOperationStatusList( - ash::DriveOperationStatusList*) { -} - -void DefaultSystemTrayDelegate::ShowNetworkConfigure( - const std::string& network_id, - gfx::NativeWindow parent_window) { -} - -bool DefaultSystemTrayDelegate::EnrollNetwork(const std::string& network_id, - gfx::NativeWindow parent_window) { - return true; -} - -void DefaultSystemTrayDelegate::ManageBluetoothDevices() { -} - -void DefaultSystemTrayDelegate::ToggleBluetooth() { - bluetooth_enabled_ = !bluetooth_enabled_; -} - -bool DefaultSystemTrayDelegate::IsBluetoothDiscovering() { - return false; -} - -void DefaultSystemTrayDelegate::ShowMobileSimDialog() { -} - -void DefaultSystemTrayDelegate::ShowMobileSetupDialog( - const std::string& service_path) { -} - -void DefaultSystemTrayDelegate::ShowOtherNetworkDialog( - const std::string& type) { -} - -bool DefaultSystemTrayDelegate::GetBluetoothAvailable() { - return true; -} - -bool DefaultSystemTrayDelegate::GetBluetoothEnabled() { - return bluetooth_enabled_; -} - -void DefaultSystemTrayDelegate::ChangeProxySettings() { -} - -VolumeControlDelegate* DefaultSystemTrayDelegate::GetVolumeControlDelegate() - const { - return volume_control_delegate_.get(); -} - -void DefaultSystemTrayDelegate::SetVolumeControlDelegate( - scoped_ptr delegate) { - volume_control_delegate_ = delegate.Pass(); -} - -bool DefaultSystemTrayDelegate::GetSessionStartTime( - base::TimeTicks* session_start_time) { - return false; -} - -bool DefaultSystemTrayDelegate::GetSessionLengthLimit( - base::TimeDelta* session_length_limit) { - return false; -} - -int DefaultSystemTrayDelegate::GetSystemTrayMenuWidth() { - // This is the default width for English languages. - return 300; -} - -} // namespace ash -- cgit v1.2.3