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

Side by Side Diff: chrome/browser/cocoa/bookmarks/bookmark_menu_bridge_unittest.mm

Issue 4710001: Split out command IDs from chrome_dll_resource.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #import "base/scoped_nsobject.h" 7 #import "base/scoped_nsobject.h"
8 #include "base/string16.h" 8 #include "base/string16.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 #include "chrome/app/chrome_dll_resource.h" 11 #include "chrome/app/chrome_command_ids.h"
12 #include "chrome/browser/bookmarks/bookmark_model.h" 12 #include "chrome/browser/bookmarks/bookmark_model.h"
13 #include "chrome/browser/browser.h" 13 #include "chrome/browser/browser.h"
14 #include "chrome/browser/cocoa/bookmarks/bookmark_menu_bridge.h" 14 #include "chrome/browser/cocoa/bookmarks/bookmark_menu_bridge.h"
15 #include "chrome/browser/cocoa/browser_test_helper.h" 15 #include "chrome/browser/cocoa/browser_test_helper.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 19
20 class TestBookmarkMenuBridge : public BookmarkMenuBridge { 20 class TestBookmarkMenuBridge : public BookmarkMenuBridge {
21 public: 21 public:
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 EXPECT_TRUE([item image]); 308 EXPECT_TRUE([item image]);
309 309
310 model->SetTitle(node, ASCIIToUTF16("New Title")); 310 model->SetTitle(node, ASCIIToUTF16("New Title"));
311 311
312 item = [menu itemWithTitle:@"Test Item"]; 312 item = [menu itemWithTitle:@"Test Item"];
313 EXPECT_FALSE(item); 313 EXPECT_FALSE(item);
314 item = [menu itemWithTitle:@"New Title"]; 314 item = [menu itemWithTitle:@"New Title"];
315 EXPECT_TRUE(item); 315 EXPECT_TRUE(item);
316 } 316 }
317 317
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698