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

Side by Side Diff: chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller_unittest.mm

Issue 228393004: Create bookmarks component with names of bookmark preferences (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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 unified diff | Download patch
OLDNEW
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"
(...skipping 10 matching lines...) Expand all
21 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_window.h" 21 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_window.h"
22 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_unittest_helper.h" 22 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_unittest_helper.h"
23 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view.h" 23 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_view.h"
24 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button.h" 24 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button.h"
25 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.h" 25 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_button_cell.h"
26 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" 26 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h"
27 #import "chrome/browser/ui/cocoa/view_resizer_pong.h" 27 #import "chrome/browser/ui/cocoa/view_resizer_pong.h"
28 #include "chrome/common/chrome_switches.h" 28 #include "chrome/common/chrome_switches.h"
29 #include "chrome/common/pref_names.h" 29 #include "chrome/common/pref_names.h"
30 #include "chrome/test/base/testing_profile.h" 30 #include "chrome/test/base/testing_profile.h"
31 #include "components/bookmarks/bookmark_pref_names.h"
31 #include "testing/gtest/include/gtest/gtest.h" 32 #include "testing/gtest/include/gtest/gtest.h"
32 #import "testing/gtest_mac.h" 33 #import "testing/gtest_mac.h"
33 #include "testing/platform_test.h" 34 #include "testing/platform_test.h"
34 #import "third_party/ocmock/OCMock/OCMock.h" 35 #import "third_party/ocmock/OCMock/OCMock.h"
35 #include "third_party/ocmock/gtest_support.h" 36 #include "third_party/ocmock/gtest_support.h"
36 #include "ui/base/cocoa/animation_utils.h" 37 #include "ui/base/cocoa/animation_utils.h"
37 #include "ui/base/theme_provider.h" 38 #include "ui/base/theme_provider.h"
38 #include "ui/events/test/cocoa_test_event_utils.h" 39 #include "ui/events/test/cocoa_test_event_utils.h"
39 #include "ui/gfx/image/image_skia.h" 40 #include "ui/gfx/image/image_skia.h"
40 41
(...skipping 2033 matching lines...) Expand 10 before | Expand all | Expand 10 after
2074 "2f3b ] 4b "); 2075 "2f3b ] 4b ");
2075 actual = test::ModelStringFromNode(root); 2076 actual = test::ModelStringFromNode(root);
2076 EXPECT_EQ(expected, actual); 2077 EXPECT_EQ(expected, actual);
2077 2078
2078 // Verify that the other bookmark folder can't be deleted. 2079 // Verify that the other bookmark folder can't be deleted.
2079 BookmarkButton *otherButton = [bar_ otherBookmarksButton]; 2080 BookmarkButton *otherButton = [bar_ otherBookmarksButton];
2080 EXPECT_FALSE([bar_ canDragBookmarkButtonToTrash:otherButton]); 2081 EXPECT_FALSE([bar_ canDragBookmarkButtonToTrash:otherButton]);
2081 } 2082 }
2082 2083
2083 } // namespace 2084 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698