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

Side by Side Diff: chrome/browser/ui/views/bookmarks/bookmark_context_menu_test.cc

Issue 7616019: Reorganize chrome/test, part #9 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
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 #include <string> 5 #include <string>
6 #include <vector> 6 #include <vector>
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 #include "chrome/app/chrome_command_ids.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/bookmarks/bookmark_utils.h" 13 #include "chrome/browser/bookmarks/bookmark_utils.h"
14 #include "chrome/browser/profiles/profile.h" 14 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/ui/views/bookmarks/bookmark_context_menu.h" 15 #include "chrome/browser/ui/views/bookmarks/bookmark_context_menu.h"
16 #include "chrome/test/base/testing_browser_process_test.h"
16 #include "chrome/test/base/testing_profile.h" 17 #include "chrome/test/base/testing_profile.h"
17 #include "chrome/test/testing_browser_process_test.h"
18 #include "content/browser/browser_thread.h" 18 #include "content/browser/browser_thread.h"
19 #include "content/browser/tab_contents/page_navigator.h" 19 #include "content/browser/tab_contents/page_navigator.h"
20 #include "grit/generated_resources.h" 20 #include "grit/generated_resources.h"
21 #include "testing/gtest/include/gtest/gtest.h" 21 #include "testing/gtest/include/gtest/gtest.h"
22 22
23 #if defined(OS_WIN) 23 #if defined(OS_WIN)
24 #include "chrome/browser/ui/views/bookmarks/bookmark_bar_view.h" 24 #include "chrome/browser/ui/views/bookmarks/bookmark_bar_view.h"
25 #endif 25 #endif
26 26
27 namespace { 27 namespace {
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 ASSERT_EQ(bb_node->GetChild(0)->url(), bb_node->GetChild(1)->url()); 313 ASSERT_EQ(bb_node->GetChild(0)->url(), bb_node->GetChild(1)->url());
314 314
315 controller.reset(new BookmarkContextMenu( 315 controller.reset(new BookmarkContextMenu(
316 NULL, profile_.get(), NULL, nodes[0]->parent(), nodes, false)); 316 NULL, profile_.get(), NULL, nodes[0]->parent(), nodes, false));
317 // Cut the URL. 317 // Cut the URL.
318 controller->ExecuteCommand(IDC_CUT); 318 controller->ExecuteCommand(IDC_CUT);
319 ASSERT_TRUE(bb_node->GetChild(0)->is_url()); 319 ASSERT_TRUE(bb_node->GetChild(0)->is_url());
320 ASSERT_TRUE(bb_node->GetChild(1)->is_folder()); 320 ASSERT_TRUE(bb_node->GetChild(1)->is_folder());
321 ASSERT_EQ(old_count, bb_node->child_count()); 321 ASSERT_EQ(old_count, bb_node->child_count());
322 } 322 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698