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

Side by Side Diff: chrome/browser/ui/views/find_bar_view.h

Issue 10020006: views: Forward declare FindNotificationDetails. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/ui/views/find_bar_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_FIND_BAR_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FIND_BAR_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_FIND_BAR_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FIND_BAR_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/string16.h" 10 #include "base/string16.h"
11 #include "chrome/browser/ui/find_bar/find_notification_details.h"
12 #include "chrome/browser/ui/views/dropdown_bar_view.h" 11 #include "chrome/browser/ui/views/dropdown_bar_view.h"
13 #include "ui/gfx/size.h"
14 #include "ui/views/controls/button/button.h" 12 #include "ui/views/controls/button/button.h"
15 #include "ui/views/controls/textfield/textfield.h" 13 #include "ui/views/controls/textfield/textfield.h"
16 #include "ui/views/controls/textfield/textfield_controller.h" 14 #include "ui/views/controls/textfield/textfield_controller.h"
17 15
18 class FindBarHost; 16 class FindBarHost;
17 class FindNotificationDetails;
19 18
20 namespace views { 19 namespace views {
21 class ImageButton; 20 class ImageButton;
22 class Label; 21 class Label;
23 class MouseEvent; 22 class MouseEvent;
24 class View; 23 class View;
25 } 24 }
26 25
27 //////////////////////////////////////////////////////////////////////////////// 26 ////////////////////////////////////////////////////////////////////////////////
28 // 27 //
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 // box to provide the Chrome look to the edge of the text box. 142 // box to provide the Chrome look to the edge of the text box.
144 const SkBitmap* text_box_background_; 143 const SkBitmap* text_box_background_;
145 144
146 // The rounded edge on the left side of the Find text box. 145 // The rounded edge on the left side of the Find text box.
147 const SkBitmap* text_box_background_left_; 146 const SkBitmap* text_box_background_left_;
148 147
149 DISALLOW_COPY_AND_ASSIGN(FindBarView); 148 DISALLOW_COPY_AND_ASSIGN(FindBarView);
150 }; 149 };
151 150
152 #endif // CHROME_BROWSER_UI_VIEWS_FIND_BAR_VIEW_H_ 151 #endif // CHROME_BROWSER_UI_VIEWS_FIND_BAR_VIEW_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/find_bar_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698