OLD | NEW |
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 class TemplateURL; | 7 class TemplateURL; |
8 | 8 |
9 #import "base/mac/cocoa_protocols.h" | 9 #import "base/mac/cocoa_protocols.h" |
10 #include "base/scoped_nsobject.h" | 10 #include "base/scoped_nsobject.h" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 templateURL:(const TemplateURL*)url; | 44 templateURL:(const TemplateURL*)url; |
45 | 45 |
46 - (IBAction)cancel:(id)sender; | 46 - (IBAction)cancel:(id)sender; |
47 - (IBAction)save:(id)sender; | 47 - (IBAction)save:(id)sender; |
48 | 48 |
49 @end | 49 @end |
50 | 50 |
51 @interface EditSearchEngineCocoaController (ExposedForTesting) | 51 @interface EditSearchEngineCocoaController (ExposedForTesting) |
52 - (BOOL)validateFields; | 52 - (BOOL)validateFields; |
53 @end | 53 @end |
OLD | NEW |