| 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/basictypes.h" | 5 #include "base/basictypes.h" |
| 6 #include "base/mac/scoped_nsobject.h" | 6 #include "base/mac/scoped_nsobject.h" |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/browser/bookmarks/bookmark_model.h" | 8 #include "chrome/browser/bookmarks/bookmark_model.h" |
| 9 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 9 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
| 10 #include "chrome/browser/bookmarks/bookmark_test_helpers.h" | 10 #include "chrome/browser/bookmarks/bookmark_test_helpers.h" |
| 11 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_constants.h" | 11 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_constants.h" |
| 12 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" | 12 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.h" |
| 13 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_button_cell.h" | 13 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_button_cell.h" |
| 14 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.h" | 14 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_controller.h" |
| 15 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_unittest_helper.h" | 15 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_unittest_helper.h" |
| 16 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" | 16 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" |
| 17 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" | 17 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" |
| 18 #import "chrome/browser/ui/cocoa/view_resizer_pong.h" | 18 #import "chrome/browser/ui/cocoa/view_resizer_pong.h" |
| 19 #include "chrome/test/base/testing_profile.h" |
| 19 #include "testing/gtest/include/gtest/gtest.h" | 20 #include "testing/gtest/include/gtest/gtest.h" |
| 20 #import "testing/gtest_mac.h" | 21 #import "testing/gtest_mac.h" |
| 21 #include "testing/platform_test.h" | 22 #include "testing/platform_test.h" |
| 22 #include "ui/base/cocoa/animation_utils.h" | 23 #include "ui/base/cocoa/animation_utils.h" |
| 23 | 24 |
| 24 | 25 |
| 25 namespace { | 26 namespace { |
| 26 | 27 |
| 27 const int kLotsOfNodesCount = 150; | 28 const int kLotsOfNodesCount = 150; |
| 28 | 29 |
| (...skipping 1570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1599 DeleteBookmark([folder parentButton], profile()); | 1600 DeleteBookmark([folder parentButton], profile()); |
| 1600 EXPECT_FALSE([folder folderController]); | 1601 EXPECT_FALSE([folder folderController]); |
| 1601 } | 1602 } |
| 1602 | 1603 |
| 1603 // TODO(jrg): draggingEntered: and draggingExited: trigger timers so | 1604 // TODO(jrg): draggingEntered: and draggingExited: trigger timers so |
| 1604 // they are hard to test. Factor out "fire timers" into routines | 1605 // they are hard to test. Factor out "fire timers" into routines |
| 1605 // which can be overridden to fire immediately to make behavior | 1606 // which can be overridden to fire immediately to make behavior |
| 1606 // confirmable. | 1607 // confirmable. |
| 1607 // There is a similar problem with mouseEnteredButton: and | 1608 // There is a similar problem with mouseEnteredButton: and |
| 1608 // mouseExitedButton:. | 1609 // mouseExitedButton:. |
| OLD | NEW |