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

Side by Side Diff: chrome/browser/autocomplete/autocomplete_edit_view_win.h

Issue 1578021: Shift omnibox dropdown in and up on Windows, and square off the top, so it co... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_WIN_H_ 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_WIN_H_
6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_WIN_H_ 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_WIN_H_
7 7
8 #include <atlbase.h> 8 #include <atlbase.h>
9 #include <atlapp.h> 9 #include <atlapp.h>
10 #include <atlcrack.h> 10 #include <atlcrack.h>
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 DECLARE_WND_CLASS(L"Chrome_AutocompleteEditView"); 62 DECLARE_WND_CLASS(L"Chrome_AutocompleteEditView");
63 63
64 AutocompleteEditViewWin(const gfx::Font& font, 64 AutocompleteEditViewWin(const gfx::Font& font,
65 AutocompleteEditController* controller, 65 AutocompleteEditController* controller,
66 ToolbarModel* toolbar_model, 66 ToolbarModel* toolbar_model,
67 views::View* parent_view, 67 views::View* parent_view,
68 HWND hwnd, 68 HWND hwnd,
69 Profile* profile, 69 Profile* profile,
70 CommandUpdater* command_updater, 70 CommandUpdater* command_updater,
71 bool popup_window_mode, 71 bool popup_window_mode,
72 const BubblePositioner* bubble_positioner); 72 const views::View* location_bar);
73 ~AutocompleteEditViewWin(); 73 ~AutocompleteEditViewWin();
74 74
75 views::View* parent_view() const { return parent_view_; } 75 views::View* parent_view() const { return parent_view_; }
76 76
77 // Implement the AutocompleteEditView interface. 77 // Implement the AutocompleteEditView interface.
78 virtual AutocompleteEditModel* model() { return model_.get(); } 78 virtual AutocompleteEditModel* model() { return model_.get(); }
79 virtual const AutocompleteEditModel* model() const { return model_.get(); } 79 virtual const AutocompleteEditModel* model() const { return model_.get(); }
80 80
81 virtual void SaveStateToTab(TabContents* tab); 81 virtual void SaveStateToTab(TabContents* tab);
82 82
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 // striken-out when displaying an insecure scheme. 487 // striken-out when displaying an insecure scheme.
488 url_parse::Component insecure_scheme_component_; 488 url_parse::Component insecure_scheme_component_;
489 489
490 // Instance of accessibility information and handling. 490 // Instance of accessibility information and handling.
491 mutable ScopedComPtr<IAccessible> autocomplete_accessibility_; 491 mutable ScopedComPtr<IAccessible> autocomplete_accessibility_;
492 492
493 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditViewWin); 493 DISALLOW_COPY_AND_ASSIGN(AutocompleteEditViewWin);
494 }; 494 };
495 495
496 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_WIN_H_ 496 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_EDIT_VIEW_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698