| OLD | NEW |
| 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/mac/scoped_nsobject.h" | 7 #include "base/mac/scoped_nsobject.h" |
| 8 #import "chrome/browser/ui/cocoa/themed_window.h" | 8 #import "chrome/browser/ui/cocoa/themed_window.h" |
| 9 #import "chrome/browser/ui/cocoa/url_drop_target.h" | 9 #import "chrome/browser/ui/cocoa/url_drop_target.h" |
| 10 | 10 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 // Sets attributed string programatically through the field editor's text | 49 // Sets attributed string programatically through the field editor's text |
| 50 // storage object. | 50 // storage object. |
| 51 - (void)setAttributedString:(NSAttributedString*)aString; | 51 - (void)setAttributedString:(NSAttributedString*)aString; |
| 52 | 52 |
| 53 @end | 53 @end |
| 54 | 54 |
| 55 @interface AutocompleteTextFieldEditor(PrivateTestMethods) | 55 @interface AutocompleteTextFieldEditor(PrivateTestMethods) |
| 56 - (AutocompleteTextFieldObserver*)observer; | 56 - (AutocompleteTextFieldObserver*)observer; |
| 57 - (void)pasteAndGo:sender; | 57 - (void)pasteAndGo:sender; |
| 58 - (void)showURL:sender; | |
| 59 @end | 58 @end |
| OLD | NEW |