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