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

Side by Side Diff: chrome/browser/ui/find_bar/find_bar.h

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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) 2010 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 // This is an interface for the platform specific FindBar. It is responsible 5 // This is an interface for the platform specific FindBar. It is responsible
6 // for drawing the FindBar bar on the platform and is owned by the 6 // for drawing the FindBar bar on the platform and is owned by the
7 // FindBarController. 7 // FindBarController.
8 8
9 #ifndef CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_H_ 9 #ifndef CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_H_
10 #define CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_H_ 10 #define CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_H_
11 #pragma once 11 #pragma once
12 12
13 #include "base/string16.h" 13 #include "base/string16.h"
14 #include "gfx/rect.h" 14 #include "ui/gfx/rect.h"
15 15
16 class FindBarController; 16 class FindBarController;
17 class FindBarTesting; 17 class FindBarTesting;
18 class FindNotificationDetails; 18 class FindNotificationDetails;
19 19
20 class FindBar { 20 class FindBar {
21 public: 21 public:
22 virtual ~FindBar() { } 22 virtual ~FindBar() { }
23 23
24 // Accessor and setter for the FindBarController. 24 // Accessor and setter for the FindBarController.
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 virtual string16 GetFindText() = 0; 92 virtual string16 GetFindText() = 0;
93 93
94 // Gets the search string currently selected in the Find box. 94 // Gets the search string currently selected in the Find box.
95 virtual string16 GetFindSelectedText() = 0; 95 virtual string16 GetFindSelectedText() = 0;
96 96
97 // Gets the match count text (ie. 1 of 3) visible in the Find box. 97 // Gets the match count text (ie. 1 of 3) visible in the Find box.
98 virtual string16 GetMatchCountText() = 0; 98 virtual string16 GetMatchCountText() = 0;
99 }; 99 };
100 100
101 #endif // CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_H_ 101 #endif // CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/view_id_util.h ('k') | chrome/browser/ui/find_bar/find_bar_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698