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

Side by Side Diff: chrome/browser/ui/ash/system_tray_delegate_win.cc

Issue 247663003: Date and Time dialog for when the clock isn't synced. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Separate actions for date tray view Created 6 years, 8 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 "chrome/browser/ui/ash/system_tray_delegate_win.h" 5 #include "chrome/browser/ui/ash/system_tray_delegate_win.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "ash/shell.h" 9 #include "ash/shell.h"
10 #include "ash/shell_delegate.h" 10 #include "ash/shell_delegate.h"
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 virtual void ShowSettings() OVERRIDE { 96 virtual void ShowSettings() OVERRIDE {
97 } 97 }
98 98
99 virtual bool ShouldShowSettings() OVERRIDE { 99 virtual bool ShouldShowSettings() OVERRIDE {
100 return true; 100 return true;
101 } 101 }
102 102
103 virtual void ShowDateSettings() OVERRIDE { 103 virtual void ShowDateSettings() OVERRIDE {
104 } 104 }
105 105
106 virtual void ShowSetTimeSetings() OVERRIDE {
Daniel Erat 2014/04/24 20:46:18 probably doesn't compile (should be ShowSetTimeDia
michaelpg 2014/04/24 20:55:47 Done.
107 }
108
106 virtual void ShowNetworkSettings(const std::string& service_path) OVERRIDE { 109 virtual void ShowNetworkSettings(const std::string& service_path) OVERRIDE {
107 } 110 }
108 111
109 virtual void ShowBluetoothSettings() OVERRIDE { 112 virtual void ShowBluetoothSettings() OVERRIDE {
110 } 113 }
111 114
112 virtual void ShowDisplaySettings() OVERRIDE { 115 virtual void ShowDisplaySettings() OVERRIDE {
113 } 116 }
114 117
115 virtual void ShowChromeSlow() OVERRIDE { 118 virtual void ShowChromeSlow() OVERRIDE {
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 343
341 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateWin); 344 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateWin);
342 }; 345 };
343 346
344 } // namespace 347 } // namespace
345 348
346 349
347 ash::SystemTrayDelegate* CreateWindowsSystemTrayDelegate() { 350 ash::SystemTrayDelegate* CreateWindowsSystemTrayDelegate() {
348 return new SystemTrayDelegateWin(); 351 return new SystemTrayDelegateWin();
349 } 352 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698