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

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

Issue 6366001: [Mac] Move the associated find bar files into a subdir of c/b/ui/cocoa/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #import "chrome/browser/ui/cocoa/find_bar_cocoa_controller.h" 7 #import "chrome/browser/ui/cocoa/find_bar/find_bar_cocoa_controller.h"
8 8
9 #include "base/scoped_nsobject.h" 9 #include "base/scoped_nsobject.h"
10 #include "base/string16.h" 10 #include "base/string16.h"
11 11
12 class BrowserWindowCocoa; 12 class BrowserWindowCocoa;
13 class FindBarBridge; 13 class FindBarBridge;
14 @class FindBarTextField; 14 @class FindBarTextField;
15 class FindNotificationDetails; 15 class FindNotificationDetails;
16 @class FocusTracker; 16 @class FocusTracker;
17 17
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 - (void)restoreSavedFocus; 69 - (void)restoreSavedFocus;
70 - (void)setFindText:(NSString*)findText; 70 - (void)setFindText:(NSString*)findText;
71 71
72 - (void)clearResults:(const FindNotificationDetails&)results; 72 - (void)clearResults:(const FindNotificationDetails&)results;
73 - (void)updateUIForFindResult:(const FindNotificationDetails&)results 73 - (void)updateUIForFindResult:(const FindNotificationDetails&)results
74 withText:(const string16&)findText; 74 withText:(const string16&)findText;
75 - (BOOL)isFindBarVisible; 75 - (BOOL)isFindBarVisible;
76 - (BOOL)isFindBarAnimating; 76 - (BOOL)isFindBarAnimating;
77 77
78 @end 78 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698