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

Side by Side Diff: chrome/browser/ui/views/status_icons/status_tray_win.cc

Issue 1545153002: Switch to standard integer types in chrome/browser/ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
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/views/status_icons/status_tray_win.h" 5 #include "chrome/browser/ui/views/status_icons/status_tray_win.h"
6 6
7 #include <commctrl.h> 7 #include <commctrl.h>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/location.h" 10 #include "base/location.h"
11 #include "base/macros.h"
11 #include "base/single_thread_task_runner.h" 12 #include "base/single_thread_task_runner.h"
12 #include "base/threading/non_thread_safe.h" 13 #include "base/threading/non_thread_safe.h"
13 #include "base/threading/thread.h" 14 #include "base/threading/thread.h"
14 #include "base/win/wrapped_window_proc.h" 15 #include "base/win/wrapped_window_proc.h"
15 #include "chrome/browser/lifetime/application_lifetime.h" 16 #include "chrome/browser/lifetime/application_lifetime.h"
16 #include "chrome/browser/ui/views/status_icons/status_icon_win.h" 17 #include "chrome/browser/ui/views/status_icons/status_icon_win.h"
17 #include "chrome/browser/ui/views/status_icons/status_tray_state_changer_win.h" 18 #include "chrome/browser/ui/views/status_icons/status_tray_state_changer_win.h"
18 #include "chrome/common/chrome_constants.h" 19 #include "chrome/common/chrome_constants.h"
19 #include "ui/gfx/screen.h" 20 #include "ui/gfx/screen.h"
20 #include "ui/gfx/win/hwnd_util.h" 21 #include "ui/gfx/win/hwnd_util.h"
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 } 230 }
230 231
231 void StatusTrayWin::SetStatusTrayStateChangerProxyForTest( 232 void StatusTrayWin::SetStatusTrayStateChangerProxyForTest(
232 scoped_ptr<StatusTrayStateChangerProxy> proxy) { 233 scoped_ptr<StatusTrayStateChangerProxy> proxy) {
233 state_changer_proxy_ = proxy.Pass(); 234 state_changer_proxy_ = proxy.Pass();
234 } 235 }
235 236
236 StatusTray* StatusTray::Create() { 237 StatusTray* StatusTray::Create() {
237 return new StatusTrayWin(); 238 return new StatusTrayWin();
238 } 239 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698