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

Side by Side Diff: chrome/browser/printing/printing_layout_browsertest.cc

Issue 10702029: Move tab functions off Browser into browser_tabstrip and browser_tabrestore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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) 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/command_line.h" 5 #include "base/command_line.h"
6 #include "base/file_path.h" 6 #include "base/file_path.h"
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 #include "base/process_util.h" 10 #include "base/process_util.h"
11 #include "base/string_util.h" 11 #include "base/string_util.h"
12 #include "base/test/test_file_util.h" 12 #include "base/test/test_file_util.h"
13 #include "base/threading/simple_thread.h" 13 #include "base/threading/simple_thread.h"
14 #include "base/utf_string_conversions.h" 14 #include "base/utf_string_conversions.h"
15 #include "chrome/browser/printing/print_job.h" 15 #include "chrome/browser/printing/print_job.h"
16 #include "chrome/browser/printing/print_view_manager.h" 16 #include "chrome/browser/printing/print_view_manager.h"
17 #include "chrome/browser/ui/browser.h" 17 #include "chrome/browser/ui/browser.h"
18 #include "chrome/browser/ui/browser_commands.h" 18 #include "chrome/browser/ui/browser_commands.h"
19 #include "chrome/browser/ui/browser_tabstrip.h"
19 #include "chrome/browser/ui/tab_contents/tab_contents.h" 20 #include "chrome/browser/ui/tab_contents/tab_contents.h"
20 #include "chrome/common/chrome_paths.h" 21 #include "chrome/common/chrome_paths.h"
21 #include "chrome/common/chrome_switches.h" 22 #include "chrome/common/chrome_switches.h"
22 #include "chrome/common/chrome_notification_types.h" 23 #include "chrome/common/chrome_notification_types.h"
23 #include "chrome/test/base/in_process_browser_test.h" 24 #include "chrome/test/base/in_process_browser_test.h"
24 #include "chrome/test/base/ui_test_utils.h" 25 #include "chrome/test/base/ui_test_utils.h"
25 #include "content/public/browser/notification_observer.h" 26 #include "content/public/browser/notification_observer.h"
26 #include "content/public/browser/notification_registrar.h" 27 #include "content/public/browser/notification_registrar.h"
27 #include "content/public/browser/notification_service.h" 28 #include "content/public/browser/notification_service.h"
28 #include "net/test/test_server.h" 29 #include "net/test/test_server.h"
(...skipping 28 matching lines...) Expand all
57 58
58 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 59 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
59 command_line->AppendSwitchPath(switches::kDebugPrint, emf_path_); 60 command_line->AppendSwitchPath(switches::kDebugPrint, emf_path_);
60 } 61 }
61 62
62 protected: 63 protected:
63 void PrintNowTab() { 64 void PrintNowTab() {
64 registrar_.Add(this, chrome::NOTIFICATION_PRINT_JOB_EVENT, 65 registrar_.Add(this, chrome::NOTIFICATION_PRINT_JOB_EVENT,
65 content::NotificationService::AllSources()); 66 content::NotificationService::AllSources());
66 67
67 TabContents* tab = browser()->GetActiveTabContents(); 68 TabContents* tab = chrome::GetActiveTabContents(browser());
68 tab->print_view_manager()->PrintNow(); 69 tab->print_view_manager()->PrintNow();
69 ui_test_utils::RunMessageLoop(); 70 ui_test_utils::RunMessageLoop();
70 registrar_.RemoveAll(); 71 registrar_.RemoveAll();
71 } 72 }
72 73
73 virtual void Observe(int type, 74 virtual void Observe(int type,
74 const content::NotificationSource& source, 75 const content::NotificationSource& source,
75 const content::NotificationDetails& details) { 76 const content::NotificationDetails& details) {
76 DCHECK(type == chrome::NOTIFICATION_PRINT_JOB_EVENT); 77 DCHECK(type == chrome::NOTIFICATION_PRINT_JOB_EVENT);
77 switch (content::Details<printing::JobEventDetails>(details)->type()) { 78 switch (content::Details<printing::JobEventDetails>(details)->type()) {
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 455
455 // Force a navigation elsewhere to verify that it's fine with it. 456 // Force a navigation elsewhere to verify that it's fine with it.
456 url = test_server()->GetURL("files/printing/test1.html"); 457 url = test_server()->GetURL("files/printing/test1.html");
457 ui_test_utils::NavigateToURL(browser(), url); 458 ui_test_utils::NavigateToURL(browser(), url);
458 } 459 }
459 chrome::CloseWindow(browser()); 460 chrome::CloseWindow(browser());
460 ui_test_utils::RunAllPendingInMessageLoop(); 461 ui_test_utils::RunAllPendingInMessageLoop();
461 462
462 EXPECT_EQ(0., CompareWithResult(L"iframe")) << L"iframe"; 463 EXPECT_EQ(0., CompareWithResult(L"iframe")) << L"iframe";
463 } 464 }
OLDNEW
« no previous file with comments | « chrome/browser/printing/print_preview_tab_controller_unittest.cc ('k') | chrome/browser/referrer_policy_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698