| 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 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 Method alternateMethod_; | 33 Method alternateMethod_; |
| 34 } | 34 } |
| 35 @end | 35 @end |
| 36 | 36 |
| 37 | 37 |
| 38 // The base class for all our bookmark releated unit tests. | 38 // The base class for all our bookmark releated unit tests. |
| 39 class BookmarkAppleScriptTest : public CocoaProfileTest { | 39 class BookmarkAppleScriptTest : public CocoaProfileTest { |
| 40 public: | 40 public: |
| 41 BookmarkAppleScriptTest(); | 41 BookmarkAppleScriptTest(); |
| 42 virtual ~BookmarkAppleScriptTest(); | 42 virtual ~BookmarkAppleScriptTest(); |
| 43 virtual void SetUp() OVERRIDE; | 43 virtual void SetUp() override; |
| 44 private: | 44 private: |
| 45 base::scoped_nsobject<FakeAppDelegate> appDelegate_; | 45 base::scoped_nsobject<FakeAppDelegate> appDelegate_; |
| 46 | 46 |
| 47 protected: | 47 protected: |
| 48 base::scoped_nsobject<BookmarkFolderAppleScript> bookmarkBar_; | 48 base::scoped_nsobject<BookmarkFolderAppleScript> bookmarkBar_; |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 #endif // CHROME_BROWSER_UI_COCOA_APPLESCRIPT_BOOKMARK_APPLESCRIPT_UTILS_UNITTE
ST_H_ | 51 #endif // CHROME_BROWSER_UI_COCOA_APPLESCRIPT_BOOKMARK_APPLESCRIPT_UTILS_UNITTE
ST_H_ |
| OLD | NEW |