| 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 #import <Cocoa/Cocoa.h> |     5 #import <Cocoa/Cocoa.h> | 
|     6  |     6  | 
|     7 #include "base/basictypes.h" |     7 #include "base/basictypes.h" | 
|     8 #include "base/command_line.h" |     8 #include "base/command_line.h" | 
|     9 #include "base/mac/scoped_nsobject.h" |     9 #include "base/mac/scoped_nsobject.h" | 
|    10 #include "base/strings/string16.h" |    10 #include "base/strings/string16.h" | 
|    11 #include "base/strings/string_util.h" |    11 #include "base/strings/string_util.h" | 
|    12 #include "base/strings/sys_string_conversions.h" |    12 #include "base/strings/sys_string_conversions.h" | 
|    13 #include "base/strings/utf_string_conversions.h" |    13 #include "base/strings/utf_string_conversions.h" | 
|    14 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |    14 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 
|    15 #include "chrome/browser/extensions/test_extension_system.h" |    15 #include "chrome/browser/extensions/test_extension_system.h" | 
|    16 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_constants.h" |    16 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_constants.h" | 
|    17 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" |    17 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" | 
|    18 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_window.h" |    18 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_window.h" | 
|    19 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_unittest_helper.h" |    19 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_unittest_helper.h" | 
|    20 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view.h" |    20 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view.h" | 
|    21 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button.h" |    21 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button.h" | 
|    22 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.h" |    22 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.h" | 
|    23 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" |    23 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" | 
|    24 #import "chrome/browser/ui/cocoa/view_resizer_pong.h" |    24 #import "chrome/browser/ui/cocoa/view_resizer_pong.h" | 
|    25 #include "chrome/common/chrome_switches.h" |    25 #include "chrome/common/chrome_switches.h" | 
|    26 #include "chrome/common/pref_names.h" |    26 #include "chrome/common/pref_names.h" | 
|    27 #include "chrome/test/base/testing_profile.h" |    27 #include "chrome/test/base/testing_profile.h" | 
|    28 #include "components/bookmarks/core/browser/bookmark_model.h" |    28 #include "components/bookmarks/browser/bookmark_model.h" | 
|    29 #include "components/bookmarks/core/browser/bookmark_utils.h" |    29 #include "components/bookmarks/browser/bookmark_utils.h" | 
|    30 #include "components/bookmarks/core/test/bookmark_test_helpers.h" |    30 #include "components/bookmarks/test/bookmark_test_helpers.h" | 
|    31 #include "testing/gtest/include/gtest/gtest.h" |    31 #include "testing/gtest/include/gtest/gtest.h" | 
|    32 #import "testing/gtest_mac.h" |    32 #import "testing/gtest_mac.h" | 
|    33 #include "testing/platform_test.h" |    33 #include "testing/platform_test.h" | 
|    34 #import "third_party/ocmock/OCMock/OCMock.h" |    34 #import "third_party/ocmock/OCMock/OCMock.h" | 
|    35 #include "third_party/ocmock/gtest_support.h" |    35 #include "third_party/ocmock/gtest_support.h" | 
|    36 #include "ui/base/cocoa/animation_utils.h" |    36 #include "ui/base/cocoa/animation_utils.h" | 
|    37 #include "ui/base/theme_provider.h" |    37 #include "ui/base/theme_provider.h" | 
|    38 #include "ui/events/test/cocoa_test_event_utils.h" |    38 #include "ui/events/test/cocoa_test_event_utils.h" | 
|    39 #include "ui/gfx/image/image_skia.h" |    39 #include "ui/gfx/image/image_skia.h" | 
|    40  |    40  | 
| (...skipping 2033 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  2074                              "2f3b ] 4b "); |  2074                              "2f3b ] 4b "); | 
|  2075   actual = test::ModelStringFromNode(root); |  2075   actual = test::ModelStringFromNode(root); | 
|  2076   EXPECT_EQ(expected, actual); |  2076   EXPECT_EQ(expected, actual); | 
|  2077  |  2077  | 
|  2078   // Verify that the other bookmark folder can't be deleted. |  2078   // Verify that the other bookmark folder can't be deleted. | 
|  2079   BookmarkButton *otherButton = [bar_ otherBookmarksButton]; |  2079   BookmarkButton *otherButton = [bar_ otherBookmarksButton]; | 
|  2080   EXPECT_FALSE([bar_ canDragBookmarkButtonToTrash:otherButton]); |  2080   EXPECT_FALSE([bar_ canDragBookmarkButtonToTrash:otherButton]); | 
|  2081 } |  2081 } | 
|  2082  |  2082  | 
|  2083 }  // namespace |  2083 }  // namespace | 
| OLD | NEW |