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

Side by Side Diff: chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.h

Issue 8463009: Cleanup: Remove unneeded forward declarations from chrome/browser/ui/views. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase, no code change Created 9 years, 1 month 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 #ifndef CHROME_BROWSER_UI_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/autocomplete/autocomplete.h" 9 #include "chrome/browser/autocomplete/autocomplete.h"
10 #include "chrome/browser/autocomplete/autocomplete_popup_model.h" 10 #include "chrome/browser/autocomplete/autocomplete_popup_model.h"
11 #include "chrome/browser/autocomplete/autocomplete_popup_view.h" 11 #include "chrome/browser/autocomplete/autocomplete_popup_view.h"
12 #include "chrome/browser/ui/views/autocomplete/autocomplete_result_view_model.h" 12 #include "chrome/browser/ui/views/autocomplete/autocomplete_result_view_model.h"
13 #include "ui/base/animation/animation_delegate.h" 13 #include "ui/base/animation/animation_delegate.h"
14 #include "ui/base/animation/slide_animation.h" 14 #include "ui/base/animation/slide_animation.h"
15 #include "ui/gfx/font.h" 15 #include "ui/gfx/font.h"
16 #include "views/view.h" 16 #include "views/view.h"
17 #include "webkit/glue/window_open_disposition.h" 17 #include "webkit/glue/window_open_disposition.h"
18 18
19 class AutocompleteEditModel; 19 class AutocompleteEditModel;
20 struct AutocompleteMatch; 20 struct AutocompleteMatch;
21 class AutocompleteResultView; 21 class AutocompleteResultView;
22 class Profile; 22 class Profile;
23 23
24 namespace gfx { 24 namespace gfx {
25 class CanvasSkia; 25 class CanvasSkia;
26 class Insets;
27 } 26 }
28 27
29 namespace views { 28 namespace views {
30 class BubbleBorder; 29 class BubbleBorder;
31 } 30 }
32 31
33 // A view representing the contents of the autocomplete popup. 32 // A view representing the contents of the autocomplete popup.
34 class AutocompletePopupContentsView : public views::View, 33 class AutocompletePopupContentsView : public views::View,
35 public AutocompleteResultViewModel, 34 public AutocompleteResultViewModel,
36 public AutocompletePopupView, 35 public AutocompletePopupView,
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 // The popup sizes vertically using an animation when the popup is getting 170 // The popup sizes vertically using an animation when the popup is getting
172 // shorter (not larger, that makes it look "slow"). 171 // shorter (not larger, that makes it look "slow").
173 ui::SlideAnimation size_animation_; 172 ui::SlideAnimation size_animation_;
174 gfx::Rect start_bounds_; 173 gfx::Rect start_bounds_;
175 gfx::Rect target_bounds_; 174 gfx::Rect target_bounds_;
176 175
177 DISALLOW_COPY_AND_ASSIGN(AutocompletePopupContentsView); 176 DISALLOW_COPY_AND_ASSIGN(AutocompletePopupContentsView);
178 }; 177 };
179 178
180 #endif // CHROME_BROWSER_UI_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS_VIEW _H_ 179 #endif // CHROME_BROWSER_UI_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS_VIEW _H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/about_ipc_dialog.h ('k') | chrome/browser/ui/views/bookmarks/bookmark_bar_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698