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

Side by Side Diff: chrome/browser/views/tabs/tab_dragging_test.cc

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 #include "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/file_util.h" 6 #include "base/file_util.h"
7 #include "chrome/app/chrome_dll_resource.h" 7 #include "chrome/app/chrome_command_ids.h"
8 #include "chrome/browser/view_ids.h" 8 #include "chrome/browser/view_ids.h"
9 #include "chrome/common/chrome_paths.h" 9 #include "chrome/common/chrome_paths.h"
10 #include "chrome/common/chrome_switches.h" 10 #include "chrome/common/chrome_switches.h"
11 #include "chrome/common/pref_names.h" 11 #include "chrome/common/pref_names.h"
12 #include "chrome/test/automation/tab_proxy.h" 12 #include "chrome/test/automation/tab_proxy.h"
13 #include "chrome/test/automation/browser_proxy.h" 13 #include "chrome/test/automation/browser_proxy.h"
14 #include "chrome/test/automation/window_proxy.h" 14 #include "chrome/test/automation/window_proxy.h"
15 #include "chrome/test/ui/ui_test.h" 15 #include "chrome/test/ui/ui_test.h"
16 #include "gfx/rect.h" 16 #include "gfx/rect.h"
17 #include "googleurl/src/gurl.h" 17 #include "googleurl/src/gurl.h"
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 scoped_refptr<TabProxy> tab1_2(browser2->GetTab(0)); 506 scoped_refptr<TabProxy> tab1_2(browser2->GetTab(0));
507 ASSERT_TRUE(tab1_2.get()); 507 ASSERT_TRUE(tab1_2.get());
508 GURL tab1_2_url; 508 GURL tab1_2_url;
509 ASSERT_TRUE(tab1_2->GetCurrentURL(&tab1_2_url)); 509 ASSERT_TRUE(tab1_2->GetCurrentURL(&tab1_2_url));
510 510
511 // Tab_1_2 of Window 2 should essentially be Tab_2 of Window 1. 511 // Tab_1_2 of Window 2 should essentially be Tab_2 of Window 1.
512 EXPECT_EQ(tab1_2_url.spec(), tab2_url.spec()); 512 EXPECT_EQ(tab1_2_url.spec(), tab2_url.spec());
513 EXPECT_NE(tab1_2_url.spec(), tab1_url.spec()); 513 EXPECT_NE(tab1_2_url.spec(), tab1_url.spec());
514 EXPECT_NE(tab1_2_url.spec(), tab3_url.spec()); 514 EXPECT_NE(tab1_2_url.spec(), tab3_url.spec());
515 } 515 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698