OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SuggestedTextView
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/ui/views/location_bar/
suggested_text_view.h
14
//
SuggestedTextView
is used to show the suggest text in the LocationBar.
17
class
SuggestedTextView
: public views::Label,
20
explicit
SuggestedTextView
(AutocompleteEditModel* edit_model);
21
virtual ~
SuggestedTextView
();
53
DISALLOW_COPY_AND_ASSIGN(
SuggestedTextView
);
suggested_text_view.cc
14
SuggestedTextView
::
SuggestedTextView
(AutocompleteEditModel* edit_model)
19
SuggestedTextView
::~
SuggestedTextView
() {
22
void
SuggestedTextView
::StartAnimation() {
30
void
SuggestedTextView
::StopAnimation() {
41
void
SuggestedTextView
::OnPaintBackground(gfx::Canvas* canvas) {
49
void
SuggestedTextView
::AnimationEnded(const ui::Animation* animation) {
53
void
SuggestedTextView
::AnimationProgressed(const ui::Animation* animation) {
67
void
SuggestedTextView
::AnimationCanceled(const ui::Animation* animation)
[
all
...]
location_bar_view.h
54
class
SuggestedTextView
;
382
SuggestedTextView
* suggested_text_view_;
location_bar_view.cc
405
suggested_text_view_ = new
SuggestedTextView
(location_entry_->model());
[
all
...]
Completed in 77 milliseconds