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

Side by Side Diff: chrome/browser/ui/views/omnibox/omnibox_view_win.h

Issue 9419043: Revert 122412 - Enabled pressing TAB to traverse through the Omnibox results (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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) 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 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_
6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_
7 #pragma once 7 #pragma once
8 8
9 #include <atlbase.h> 9 #include <atlbase.h>
10 #include <atlapp.h> 10 #include <atlapp.h>
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 size_t index, 103 size_t index,
104 const string16& keyword) OVERRIDE; 104 const string16& keyword) OVERRIDE;
105 virtual string16 GetText() const OVERRIDE; 105 virtual string16 GetText() const OVERRIDE;
106 virtual bool IsEditingOrEmpty() const OVERRIDE; 106 virtual bool IsEditingOrEmpty() const OVERRIDE;
107 virtual int GetIcon() const OVERRIDE; 107 virtual int GetIcon() const OVERRIDE;
108 virtual void SetUserText(const string16& text) OVERRIDE; 108 virtual void SetUserText(const string16& text) OVERRIDE;
109 virtual void SetUserText(const string16& text, 109 virtual void SetUserText(const string16& text,
110 const string16& display_text, 110 const string16& display_text,
111 bool update_popup) OVERRIDE; 111 bool update_popup) OVERRIDE;
112 virtual void SetWindowTextAndCaretPos(const string16& text, 112 virtual void SetWindowTextAndCaretPos(const string16& text,
113 size_t caret_pos, 113 size_t caret_pos) OVERRIDE;
114 bool update_popup,
115 bool notify_text_changed) OVERRIDE;
116 virtual void SetForcedQuery() OVERRIDE; 114 virtual void SetForcedQuery() OVERRIDE;
117 virtual bool IsSelectAll() OVERRIDE; 115 virtual bool IsSelectAll() OVERRIDE;
118 virtual bool DeleteAtEndPressed() OVERRIDE; 116 virtual bool DeleteAtEndPressed() OVERRIDE;
119 virtual void GetSelectionBounds(string16::size_type* start, 117 virtual void GetSelectionBounds(string16::size_type* start,
120 string16::size_type* end) const OVERRIDE; 118 string16::size_type* end) const OVERRIDE;
121 virtual void SelectAll(bool reversed) OVERRIDE; 119 virtual void SelectAll(bool reversed) OVERRIDE;
122 virtual void RevertAll() OVERRIDE; 120 virtual void RevertAll() OVERRIDE;
123 virtual void UpdatePopup() OVERRIDE; 121 virtual void UpdatePopup() OVERRIDE;
124 virtual void ClosePopup() OVERRIDE; 122 virtual void ClosePopup() OVERRIDE;
125 virtual void SetFocus() OVERRIDE; 123 virtual void SetFocus() OVERRIDE;
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 views::NativeViewHost* native_view_host_; 548 views::NativeViewHost* native_view_host_;
551 549
552 // ITextInputPanel to allow us to show the Windows virtual keyboard when a 550 // ITextInputPanel to allow us to show the Windows virtual keyboard when a
553 // user touches the Omnibox. 551 // user touches the Omnibox.
554 base::win::ScopedComPtr<ITextInputPanel> keyboard_; 552 base::win::ScopedComPtr<ITextInputPanel> keyboard_;
555 553
556 DISALLOW_COPY_AND_ASSIGN(OmniboxViewWin); 554 DISALLOW_COPY_AND_ASSIGN(OmniboxViewWin);
557 }; 555 };
558 556
559 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_ 557 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/omnibox/omnibox_view_views.cc ('k') | chrome/browser/ui/views/omnibox/omnibox_view_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698