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

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

Issue 16012017: Use a direct include of strings headers in chrome/browser/ui/cocoa/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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) 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 #import <Cocoa/Cocoa.h> 5 #import <Cocoa/Cocoa.h>
6 6
7 #include "base/memory/scoped_nsobject.h" 7 #include "base/memory/scoped_nsobject.h"
8 #include "base/string16.h" 8 #include "base/strings/string16.h"
9 #include "ui/gfx/point.h" 9 #include "ui/gfx/point.h"
10 10
11 class Browser; 11 class Browser;
12 class FindBarBridge; 12 class FindBarBridge;
13 @class FindBarTextField; 13 @class FindBarTextField;
14 class FindNotificationDetails; 14 class FindNotificationDetails;
15 @class FocusTracker; 15 @class FocusTracker;
16 16
17 // A controller for the find bar in the browser window. Manages 17 // A controller for the find bar in the browser window. Manages
18 // updating the state of the find bar and provides a target for the 18 // updating the state of the find bar and provides a target for the
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 - (BOOL)isFindBarAnimating; 94 - (BOOL)isFindBarAnimating;
95 95
96 // Returns the FindBar's position in the superview's coordinates, but with 96 // Returns the FindBar's position in the superview's coordinates, but with
97 // the Y coordinate growing down. 97 // the Y coordinate growing down.
98 - (gfx::Point)findBarWindowPosition; 98 - (gfx::Point)findBarWindowPosition;
99 99
100 // Returns the width of the FindBar. 100 // Returns the width of the FindBar.
101 - (int)findBarWidth; 101 - (int)findBarWidth;
102 102
103 @end 103 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698