| 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 #ifndef CHROME_BROWSER_UI_COCOA_APPLESCRIPT_BOOKMARK_APPLESCRIPT_UTILS_UNITTEST_
H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_APPLESCRIPT_BOOKMARK_APPLESCRIPT_UTILS_UNITTEST_
H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_APPLESCRIPT_BOOKMARK_APPLESCRIPT_UTILS_UNITTEST_
H_ | 6 #define CHROME_BROWSER_UI_COCOA_APPLESCRIPT_BOOKMARK_APPLESCRIPT_UTILS_UNITTEST_
H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 #import <objc/objc-runtime.h> | 9 #import <objc/objc-runtime.h> |
| 10 | 10 |
| 11 #include "base/mac/scoped_nsobject.h" | 11 #include "base/mac/scoped_nsobject.h" |
| 12 #import "chrome/browser/app_controller_mac.h" | 12 #import "chrome/browser/app_controller_mac.h" |
| 13 #import "chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript.h" | 13 #import "chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript.h" |
| 14 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" | 14 #include "chrome/browser/ui/cocoa/test/cocoa_profile_test.h" |
| 15 #include "testing/platform_test.h" | 15 #include "testing/platform_test.h" |
| 16 | 16 |
| 17 // The fake object that acts as our app's delegate, useful for testing purposes. | 17 // The fake object that acts as our app's delegate, useful for testing purposes. |
| 18 @interface FakeAppDelegate : AppController { | 18 @interface FakeAppDelegate : AppController { |
| 19 @public | 19 @public |
| 20 CocoaProfileTest* test_; // weak. | 20 CocoaProfileTest* test_; // weak. |
| 21 } | 21 } |
| 22 @property(nonatomic) CocoaProfileTest* test; | 22 @property(nonatomic) CocoaProfileTest* test; |
| 23 // Return the |TestingProfile*| which is used for testing. | 23 // Return the |TestingProfile*| which is used for testing. |
| 24 - (Profile*)lastProfile; | 24 - (Profile*)lastProfile; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 41 void SetUp() override; | 41 void SetUp() override; |
| 42 | 42 |
| 43 private: | 43 private: |
| 44 base::scoped_nsobject<FakeAppDelegate> appDelegate_; | 44 base::scoped_nsobject<FakeAppDelegate> appDelegate_; |
| 45 | 45 |
| 46 protected: | 46 protected: |
| 47 base::scoped_nsobject<BookmarkFolderAppleScript> bookmarkBar_; | 47 base::scoped_nsobject<BookmarkFolderAppleScript> bookmarkBar_; |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 #endif // CHROME_BROWSER_UI_COCOA_APPLESCRIPT_BOOKMARK_APPLESCRIPT_UTILS_UNITTE
ST_H_ | 50 #endif // CHROME_BROWSER_UI_COCOA_APPLESCRIPT_BOOKMARK_APPLESCRIPT_UTILS_UNITTE
ST_H_ |
| OLD | NEW |