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

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

Issue 6204002: Carnitas: Remove chrome/browser/views, update references. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Yay, more syncing Created 9 years, 11 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) 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 "gfx/font.h" 12 #include "gfx/font.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 "views/view.h" 15 #include "views/view.h"
16 #include "webkit/glue/window_open_disposition.h" 16 #include "webkit/glue/window_open_disposition.h"
17 17
18 #if defined(OS_WIN) 18 #if defined(OS_WIN)
19 #include "chrome/browser/views/autocomplete/autocomplete_popup_win.h" 19 #include "chrome/browser/ui/views/autocomplete/autocomplete_popup_win.h"
20 #else 20 #else
21 #include "chrome/browser/views/autocomplete/autocomplete_popup_gtk.h" 21 #include "chrome/browser/ui/views/autocomplete/autocomplete_popup_gtk.h"
22 #endif 22 #endif
23 23
24 class AutocompleteEditModel; 24 class AutocompleteEditModel;
25 class AutocompleteEditViewWin; 25 class AutocompleteEditViewWin;
26 struct AutocompleteMatch; 26 struct AutocompleteMatch;
27 class BubbleBorder; 27 class BubbleBorder;
28 class Profile; 28 class Profile;
29 29
30 // An interface implemented by an object that provides data to populate 30 // An interface implemented by an object that provides data to populate
31 // individual result views. 31 // individual result views.
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 gfx::Rect start_bounds_; 169 gfx::Rect start_bounds_;
170 gfx::Rect target_bounds_; 170 gfx::Rect target_bounds_;
171 171
172 // If non-NULL the instant opt-in-view is visible. 172 // If non-NULL the instant opt-in-view is visible.
173 views::View* opt_in_view_; 173 views::View* opt_in_view_;
174 174
175 DISALLOW_COPY_AND_ASSIGN(AutocompletePopupContentsView); 175 DISALLOW_COPY_AND_ASSIGN(AutocompletePopupContentsView);
176 }; 176 };
177 177
178 #endif // CHROME_BROWSER_UI_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS_VIEW _H_ 178 #endif // CHROME_BROWSER_UI_VIEWS_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_CONTENTS_VIEW _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698