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

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

Issue 823133004: Cleanup: Update the path to gfx rect headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rect_f.h Created 5 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
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 // 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 11
12 #include "base/strings/string16.h" 12 #include "base/strings/string16.h"
13 #include "ui/gfx/rect.h" 13 #include "ui/gfx/geometry/rect.h"
14 14
15 class FindBarController; 15 class FindBarController;
16 class FindBarTesting; 16 class FindBarTesting;
17 class FindNotificationDetails; 17 class FindNotificationDetails;
18 18
19 namespace gfx { 19 namespace gfx {
20 class Range; 20 class Range;
21 } 21 }
22 22
23 class FindBar { 23 class FindBar {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 virtual base::string16 GetFindSelectedText() = 0; 107 virtual base::string16 GetFindSelectedText() = 0;
108 108
109 // Gets the match count text (ie. 1 of 3) visible in the Find box. 109 // Gets the match count text (ie. 1 of 3) visible in the Find box.
110 virtual base::string16 GetMatchCountText() = 0; 110 virtual base::string16 GetMatchCountText() = 0;
111 111
112 // Gets the pixel width of the FindBar. 112 // Gets the pixel width of the FindBar.
113 virtual int GetWidth() = 0; 113 virtual int GetWidth() = 0;
114 }; 114 };
115 115
116 #endif // CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_H_ 116 #endif // CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/extensions/application_launch_web_app.cc ('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