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

Side by Side Diff: ui/views/widget/tooltip_manager_win.cc

Issue 16757004: Use a direct include of strings headers in ui/, part 3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « ui/views/widget/tooltip_manager_win.h ('k') | ui/views/win/hwnd_message_handler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "ui/views/widget/tooltip_manager_win.h" 5 #include "ui/views/widget/tooltip_manager_win.h"
6 6
7 #include <windowsx.h> 7 #include <windowsx.h>
8 8
9 #include <limits> 9 #include <limits>
10 10
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/i18n/rtl.h" 12 #include "base/i18n/rtl.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/message_loop.h" 14 #include "base/message_loop.h"
15 #include "base/string_util.h" 15 #include "base/strings/string_util.h"
16 #include "base/win/scoped_hdc.h" 16 #include "base/win/scoped_hdc.h"
17 #include "base/win/scoped_select_object.h" 17 #include "base/win/scoped_select_object.h"
18 #include "ui/base/l10n/l10n_util_win.h" 18 #include "ui/base/l10n/l10n_util_win.h"
19 #include "ui/base/win/hwnd_util.h" 19 #include "ui/base/win/hwnd_util.h"
20 #include "ui/base/win/scoped_set_map_mode.h" 20 #include "ui/base/win/scoped_set_map_mode.h"
21 #include "ui/gfx/font.h" 21 #include "ui/gfx/font.h"
22 #include "ui/gfx/screen.h" 22 #include "ui/gfx/screen.h"
23 #include "ui/views/view.h" 23 #include "ui/views/view.h"
24 #include "ui/views/widget/monitor_win.h" 24 #include "ui/views/widget/monitor_win.h"
25 #include "ui/views/widget/widget.h" 25 #include "ui/views/widget/widget.h"
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 keyboard_tooltip_hwnd_ = NULL; 386 keyboard_tooltip_hwnd_ = NULL;
387 } 387 }
388 } 388 }
389 389
390 void TooltipManagerWin::DestroyKeyboardTooltipWindow(HWND window_to_destroy) { 390 void TooltipManagerWin::DestroyKeyboardTooltipWindow(HWND window_to_destroy) {
391 if (keyboard_tooltip_hwnd_ == window_to_destroy) 391 if (keyboard_tooltip_hwnd_ == window_to_destroy)
392 HideKeyboardTooltip(); 392 HideKeyboardTooltip();
393 } 393 }
394 394
395 } // namespace views 395 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/widget/tooltip_manager_win.h ('k') | ui/views/win/hwnd_message_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698