OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <AppKit/AppKit.h> | 5 #import <AppKit/AppKit.h> |
6 | 6 |
7 #include "base/strings/string16.h" | 7 #include "base/strings/string16.h" |
8 #include "base/strings/string_util.h" | 8 #include "base/strings/string_util.h" |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "chrome/app/chrome_command_ids.h" | 10 #include "chrome/app/chrome_command_ids.h" |
11 #include "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h" | 11 #include "chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge.h" |
12 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" | 12 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" |
13 #include "chrome/grit/generated_resources.h" | 13 #include "chrome/grit/generated_resources.h" |
14 #include "chrome/test/base/testing_profile.h" | 14 #include "chrome/test/base/testing_profile.h" |
15 #include "components/bookmarks/browser/bookmark_model.h" | 15 #include "components/bookmarks/browser/bookmark_model.h" |
16 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
17 #import "testing/gtest_mac.h" | 17 #import "testing/gtest_mac.h" |
18 #include "testing/platform_test.h" | 18 #include "testing/platform_test.h" |
19 #include "ui/base/l10n/l10n_util.h" | 19 #include "ui/base/l10n/l10n_util.h" |
20 | 20 |
21 using base::ASCIIToUTF16; | 21 using base::ASCIIToUTF16; |
22 using bookmarks::BookmarkModel; | 22 using bookmarks::BookmarkModel; |
| 23 using bookmarks::BookmarkNode; |
23 | 24 |
24 class TestBookmarkMenuBridge : public BookmarkMenuBridge { | 25 class TestBookmarkMenuBridge : public BookmarkMenuBridge { |
25 public: | 26 public: |
26 TestBookmarkMenuBridge(Profile* profile, NSMenu *menu) | 27 TestBookmarkMenuBridge(Profile* profile, NSMenu *menu) |
27 : BookmarkMenuBridge(profile, menu), | 28 : BookmarkMenuBridge(profile, menu), |
28 menu_(menu) { | 29 menu_(menu) { |
29 } | 30 } |
30 ~TestBookmarkMenuBridge() override { [menu_ autorelease]; } | 31 ~TestBookmarkMenuBridge() override { [menu_ autorelease]; } |
31 | 32 |
32 NSMenu* menu_; | 33 NSMenu* menu_; |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 EXPECT_TRUE([item image]); | 392 EXPECT_TRUE([item image]); |
392 | 393 |
393 model->SetTitle(node, ASCIIToUTF16("New Title")); | 394 model->SetTitle(node, ASCIIToUTF16("New Title")); |
394 | 395 |
395 item = [menu itemWithTitle:@"Test Item"]; | 396 item = [menu itemWithTitle:@"Test Item"]; |
396 EXPECT_FALSE(item); | 397 EXPECT_FALSE(item); |
397 item = [menu itemWithTitle:@"New Title"]; | 398 item = [menu itemWithTitle:@"New Title"]; |
398 EXPECT_TRUE(item); | 399 EXPECT_TRUE(item); |
399 } | 400 } |
400 | 401 |
OLD | NEW |