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

Unified Diff: chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest.mm

Issue 2724603002: MacViews: Enable AppleScript support. (Closed)
Patch Set: MacViews: Enable AppleScript support. Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest.mm
diff --git a/chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest.mm b/chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest.mm
deleted file mode 100644
index 4f2fc760fc67a0b4d7ef8e180d1c4b0f00d5e5bc..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest.mm
+++ /dev/null
@@ -1,76 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#import "chrome/browser/ui/cocoa/applescript/bookmark_applescript_utils_unittest.h"
-
-#include "chrome/browser/bookmarks/bookmark_model_factory.h"
-#include "chrome/test/base/testing_profile.h"
-#include "components/bookmarks/browser/bookmark_model.h"
-#include "components/bookmarks/test/bookmark_test_helpers.h"
-
-using bookmarks::BookmarkModel;
-using bookmarks::BookmarkNode;
-
-@implementation FakeAppDelegate
-
-@synthesize test = test_;
-
-- (Profile*)lastProfile {
- if (!test_)
- return NULL;
- return test_->profile();
-}
-@end
-
-// Represents the current fake command that is executing.
-static FakeScriptCommand* kFakeCurrentCommand;
-
-@implementation FakeScriptCommand
-
-- (id)init {
- if ((self = [super init])) {
- originalMethod_ = class_getClassMethod([NSScriptCommand class],
- @selector(currentCommand));
- alternateMethod_ = class_getClassMethod([self class],
- @selector(currentCommand));
- method_exchangeImplementations(originalMethod_, alternateMethod_);
- kFakeCurrentCommand = self;
- }
- return self;
-}
-
-+ (NSScriptCommand*)currentCommand {
- return kFakeCurrentCommand;
-}
-
-- (void)dealloc {
- method_exchangeImplementations(originalMethod_, alternateMethod_);
- kFakeCurrentCommand = nil;
- [super dealloc];
-}
-
-@end
-
-BookmarkAppleScriptTest::BookmarkAppleScriptTest() {
-}
-
-BookmarkAppleScriptTest::~BookmarkAppleScriptTest() {
- [NSApp setDelegate:nil];
-}
-
-void BookmarkAppleScriptTest::SetUp() {
- CocoaProfileTest::SetUp();
- ASSERT_TRUE(profile());
-
- appDelegate_.reset([[FakeAppDelegate alloc] init]);
- [appDelegate_.get() setTest:this];
- DCHECK([NSApp delegate] == nil);
- [NSApp setDelegate:appDelegate_];
- BookmarkModel* model = BookmarkModelFactory::GetForBrowserContext(profile());
- const BookmarkNode* root = model->bookmark_bar_node();
- const std::string modelString("a f1:[ b d c ] d f2:[ e f g ] h ");
- bookmarks::test::AddNodesFromModelString(model, root, modelString);
- bookmarkBar_.reset([[BookmarkFolderAppleScript alloc]
- initWithBookmarkNode:model->bookmark_bar_node()]);
-}

Powered by Google App Engine
This is Rietveld 408576698