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

Side by Side Diff: chrome/browser/ui/views/autocomplete/autocomplete_popup_win.cc

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/autocomplete/autocomplete_popup_win.h" 5 #include "chrome/browser/ui/views/autocomplete/autocomplete_popup_win.h"
6 6
7 #include "chrome/browser/autocomplete/autocomplete_edit_view_win.h" 7 #include "chrome/browser/autocomplete/autocomplete_edit_view_win.h"
8 #include "chrome/browser/autocomplete/autocomplete_popup_model.h" 8 #include "chrome/browser/autocomplete/autocomplete_popup_model.h"
9 #include "chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view. h" 9 #include "chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view. h"
10 #include "gfx/insets.h" 10 #include "ui/gfx/insets.h"
11 11
12 //////////////////////////////////////////////////////////////////////////////// 12 ////////////////////////////////////////////////////////////////////////////////
13 // AutocompletePopupWin, public: 13 // AutocompletePopupWin, public:
14 14
15 AutocompletePopupWin::AutocompletePopupWin( 15 AutocompletePopupWin::AutocompletePopupWin(
16 AutocompleteEditView* edit_view, 16 AutocompleteEditView* edit_view,
17 AutocompletePopupContentsView* contents) { 17 AutocompletePopupContentsView* contents) {
18 // Create the popup. 18 // Create the popup.
19 set_window_style(WS_POPUP | WS_CLIPCHILDREN); 19 set_window_style(WS_POPUP | WS_CLIPCHILDREN);
20 set_window_ex_style(WS_EX_TOOLWINDOW | WS_EX_LAYERED); 20 set_window_ex_style(WS_EX_TOOLWINDOW | WS_EX_LAYERED);
(...skipping 16 matching lines...) Expand all
37 AutocompletePopupWin::~AutocompletePopupWin() { 37 AutocompletePopupWin::~AutocompletePopupWin() {
38 } 38 }
39 39
40 //////////////////////////////////////////////////////////////////////////////// 40 ////////////////////////////////////////////////////////////////////////////////
41 // AutocompletePopupWin, WidgetWin overrides: 41 // AutocompletePopupWin, WidgetWin overrides:
42 42
43 LRESULT AutocompletePopupWin::OnMouseActivate(HWND window, UINT hit_test, 43 LRESULT AutocompletePopupWin::OnMouseActivate(HWND window, UINT hit_test,
44 UINT mouse_message) { 44 UINT mouse_message) {
45 return MA_NOACTIVATE; 45 return MA_NOACTIVATE;
46 } 46 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/autocomplete/autocomplete_popup_gtk.cc ('k') | chrome/browser/ui/views/autofill_profiles_view_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698