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

Side by Side Diff: chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_unittest_helper.h

Issue 2637403002: Fix header guards in //chrome (Closed)
Patch Set: Created 3 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_UI_COCOA_AUTOCOMPLETE_TEXT_FIELD_UNITTEST_HELPER_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_LOCATION_BAR_AUTOCOMPLETE_TEXT_FIELD_UNITTEST_HE LPER_H_
6 #define CHROME_BROWSER_UI_COCOA_AUTOCOMPLETE_TEXT_FIELD_UNITTEST_HELPER_H_ 6 #define CHROME_BROWSER_UI_COCOA_LOCATION_BAR_AUTOCOMPLETE_TEXT_FIELD_UNITTEST_HE LPER_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #include "base/mac/scoped_nsobject.h" 10 #include "base/mac/scoped_nsobject.h"
11 #import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field.h" 11 #import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field.h"
12 #include "testing/gmock/include/gmock/gmock.h" 12 #include "testing/gmock/include/gmock/gmock.h"
13 13
14 @class AutocompleteTextFieldEditor; 14 @class AutocompleteTextFieldEditor;
15 15
16 // Return the right field editor for AutocompleteTextField instance. 16 // Return the right field editor for AutocompleteTextField instance.
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 MOCK_METHOD0(OnDidEndEditing, void()); 51 MOCK_METHOD0(OnDidEndEditing, void());
52 MOCK_METHOD0(OnInsertText, void()); 52 MOCK_METHOD0(OnInsertText, void());
53 MOCK_METHOD0(OnBeforeDrawRect, void()); 53 MOCK_METHOD0(OnBeforeDrawRect, void());
54 MOCK_METHOD0(OnDidDrawRect, void()); 54 MOCK_METHOD0(OnDidDrawRect, void());
55 MOCK_METHOD1(OnDoCommandBySelector, bool(SEL cmd)); 55 MOCK_METHOD1(OnDoCommandBySelector, bool(SEL cmd));
56 MOCK_METHOD1(OnSetFocus, void(bool control_down)); 56 MOCK_METHOD1(OnSetFocus, void(bool control_down));
57 MOCK_METHOD0(OnKillFocus, void()); 57 MOCK_METHOD0(OnKillFocus, void());
58 MOCK_METHOD1(OnMouseDown, void(NSInteger button_number)); 58 MOCK_METHOD1(OnMouseDown, void(NSInteger button_number));
59 }; 59 };
60 60
61 #endif // CHROME_BROWSER_UI_COCOA_AUTOCOMPLETE_TEXT_FIELD_UNITTEST_HELPER_H_ 61 #endif // CHROME_BROWSER_UI_COCOA_LOCATION_BAR_AUTOCOMPLETE_TEXT_FIELD_UNITTEST _HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698