| OLD | NEW | 
|---|
| 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 #include "base/mac/scoped_nsobject.h" | 5 #include "base/mac/scoped_nsobject.h" | 
| 6 #include "base/strings/string16.h" | 6 #include "base/strings/string16.h" | 
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" | 
| 8 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 8 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 
| 9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" | 
| 10 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.h" | 10 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.h" | 
| 11 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.h" | 11 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.h" | 
| 12 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button.h" | 12 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button.h" | 
| 13 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target.h" | 13 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_folder_target.h" | 
| 14 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" | 14 #include "chrome/browser/ui/cocoa/test/cocoa_profile_test.h" | 
| 15 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" | 15 #import "chrome/browser/ui/cocoa/test/cocoa_test_helper.h" | 
| 16 #import "chrome/browser/ui/cocoa/url_drop_target.h" | 16 #import "chrome/browser/ui/cocoa/url_drop_target.h" | 
| 17 #include "chrome/test/base/testing_profile.h" | 17 #include "chrome/test/base/testing_profile.h" | 
| 18 #include "components/bookmarks/browser/bookmark_model.h" | 18 #include "components/bookmarks/browser/bookmark_model.h" | 
| 19 #include "components/bookmarks/test/bookmark_test_helpers.h" | 19 #include "components/bookmarks/test/bookmark_test_helpers.h" | 
| 20 #include "testing/gtest/include/gtest/gtest.h" | 20 #include "testing/gtest/include/gtest/gtest.h" | 
| 21 #include "testing/platform_test.h" | 21 #include "testing/platform_test.h" | 
| 22 #import "third_party/mozilla/NSPasteboard+Utils.h" | 22 #import "third_party/mozilla/NSPasteboard+Utils.h" | 
| 23 #import "third_party/ocmock/OCMock/OCMock.h" | 23 #import "third_party/ocmock/OCMock/OCMock.h" | 
| 24 #import "third_party/ocmock/ocmock_extensions.h" | 24 #import "third_party/ocmock/ocmock_extensions.h" | 
| 25 #include "ui/base/clipboard/clipboard_util_mac.h" | 25 #include "ui/base/clipboard/clipboard_util_mac.h" | 
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 214   mock_controller_.reset(GetMockController( | 214   mock_controller_.reset(GetMockController( | 
| 215       NO, BookmarkModelFactory::GetForBrowserContext(profile()))); | 215       NO, BookmarkModelFactory::GetForBrowserContext(profile()))); | 
| 216   [view_ setController:mock_controller_]; | 216   [view_ setController:mock_controller_]; | 
| 217   [[[mock_controller_ expect] andReturnUnsignedInteger:NSDragOperationNone] | 217   [[[mock_controller_ expect] andReturnUnsignedInteger:NSDragOperationNone] | 
| 218    draggingEntered:drag_info]; | 218    draggingEntered:drag_info]; | 
| 219   EXPECT_EQ([view_ draggingEntered:drag_info], NSDragOperationMove); | 219   EXPECT_EQ([view_ draggingEntered:drag_info], NSDragOperationMove); | 
| 220   EXPECT_FALSE([view_ dropIndicatorShown]); | 220   EXPECT_FALSE([view_ dropIndicatorShown]); | 
| 221 } | 221 } | 
| 222 | 222 | 
| 223 }  // namespace | 223 }  // namespace | 
| OLD | NEW | 
|---|