| 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/memory/scoped_nsobject.h" | 9 #include "base/memory/scoped_nsobject.h" |
| 10 #include "base/string16.h" | 10 #include "base/strings/string16.h" |
| 11 #include "base/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.h" | 14 #include "chrome/browser/bookmarks/bookmark_model.h" |
| 15 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 15 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
| 16 #include "chrome/browser/bookmarks/bookmark_utils.h" | 16 #include "chrome/browser/bookmarks/bookmark_utils.h" |
| 17 #include "chrome/browser/extensions/test_extension_system.h" | 17 #include "chrome/browser/extensions/test_extension_system.h" |
| 18 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_constants.h" | 18 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_constants.h" |
| 19 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" | 19 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" |
| 20 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_window.h" | 20 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_window.h" |
| 21 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_unittest_helper.h" | 21 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_unittest_helper.h" |
| (...skipping 2047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2069 "2f3b ] 4b "); | 2069 "2f3b ] 4b "); |
| 2070 actual = model_test_utils::ModelStringFromNode(root); | 2070 actual = model_test_utils::ModelStringFromNode(root); |
| 2071 EXPECT_EQ(expected, actual); | 2071 EXPECT_EQ(expected, actual); |
| 2072 | 2072 |
| 2073 // Verify that the other bookmark folder can't be deleted. | 2073 // Verify that the other bookmark folder can't be deleted. |
| 2074 BookmarkButton *otherButton = [bar_ otherBookmarksButton]; | 2074 BookmarkButton *otherButton = [bar_ otherBookmarksButton]; |
| 2075 EXPECT_FALSE([bar_ canDragBookmarkButtonToTrash:otherButton]); | 2075 EXPECT_FALSE([bar_ canDragBookmarkButtonToTrash:otherButton]); |
| 2076 } | 2076 } |
| 2077 | 2077 |
| 2078 } // namespace | 2078 } // namespace |
| OLD | NEW |