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

Side by Side Diff: chrome/browser/ui/views/location_bar/keyword_hint_view.h

Issue 8742030: views: Move view.h to ui/views/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase and fix conflicts Created 9 years 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_LOCATION_BAR_KEYWORD_HINT_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_KEYWORD_HINT_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_KEYWORD_HINT_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_KEYWORD_HINT_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "ui/gfx/size.h" 12 #include "ui/gfx/size.h"
13 #include "views/view.h" 13 #include "ui/views/view.h"
14 14
15 namespace gfx { 15 namespace gfx {
16 class Font; 16 class Font;
17 } 17 }
18 class Profile; 18 class Profile;
19 namespace views { 19 namespace views {
20 class Label; 20 class Label;
21 } 21 }
22 22
23 // KeywordHintView is used by the location bar view to display a hint to the 23 // KeywordHintView is used by the location bar view to display a hint to the
(...skipping 28 matching lines...) Expand all
52 52
53 // The keyword. 53 // The keyword.
54 string16 keyword_; 54 string16 keyword_;
55 55
56 Profile* profile_; 56 Profile* profile_;
57 57
58 DISALLOW_IMPLICIT_CONSTRUCTORS(KeywordHintView); 58 DISALLOW_IMPLICIT_CONSTRUCTORS(KeywordHintView);
59 }; 59 };
60 60
61 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_KEYWORD_HINT_VIEW_H_ 61 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_KEYWORD_HINT_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698