blob: f9e88f8088f3ee3cd148943056f696412192c2cc [file] [log] [blame]
[email protected]c6d068ff2011-10-14 17:28:231// 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
3// found in the LICENSE file.
4
5#ifndef CHROME_RENDERER_CHROME_MOCK_RENDER_THREAD_H_
6#define CHROME_RENDERER_CHROME_MOCK_RENDER_THREAD_H_
[email protected]c6d068ff2011-10-14 17:28:237
8#include <string>
9
10#include "base/compiler_specific.h"
[email protected]08a932d52012-06-03 21:42:1211#include "content/public/test/mock_render_thread.h"
[email protected]c6d068ff2011-10-14 17:28:2312
13namespace base {
14class DictionaryValue;
15}
16
[email protected]116d0962012-08-24 23:22:2817class MockPrinter;
[email protected]686914f2013-04-25 04:54:5818struct ExtensionMsg_ExternalConnectionInfo;
[email protected]c6d068ff2011-10-14 17:28:2319struct PrintHostMsg_DidGetPreviewPageCount_Params;
20struct PrintHostMsg_DidPreviewPage_Params;
[email protected]116d0962012-08-24 23:22:2821struct PrintHostMsg_DidPrintPage_Params;
[email protected]c6d068ff2011-10-14 17:28:2322struct PrintHostMsg_ScriptedPrint_Params;
23struct PrintMsg_PrintPages_Params;
24struct PrintMsg_Print_Params;
25
26// Extends content::MockRenderThread to know about printing and
27// extension messages.
28class ChromeMockRenderThread : public content::MockRenderThread {
29 public:
30 ChromeMockRenderThread();
31 virtual ~ChromeMockRenderThread();
32
[email protected]c9a49a52013-10-25 02:20:5333 // content::RenderThread overrides.
34 virtual scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy()
35 OVERRIDE;
36
[email protected]c6d068ff2011-10-14 17:28:2337 //////////////////////////////////////////////////////////////////////////
38 // The following functions are called by the test itself.
39
[email protected]c9a49a52013-10-25 02:20:5340 // Set IO message loop proxy.
41 void set_io_message_loop_proxy(
42 const scoped_refptr<base::MessageLoopProxy>& proxy);
43
[email protected]1e54c1c2013-08-12 17:16:0544#if defined(ENABLE_PRINTING)
[email protected]c6d068ff2011-10-14 17:28:2345 // Returns the pseudo-printer instance.
[email protected]116d0962012-08-24 23:22:2846 MockPrinter* printer();
[email protected]c6d068ff2011-10-14 17:28:2347
48 // Call with |response| set to true if the user wants to print.
49 // False if the user decides to cancel.
50 void set_print_dialog_user_response(bool response);
51
52 // Cancel print preview when print preview has |page| remaining pages.
53 void set_print_preview_cancel_page_number(int page);
54
55 // Get the number of pages to generate for print preview.
[email protected]116d0962012-08-24 23:22:2856 int print_preview_pages_remaining() const;
[email protected]1e54c1c2013-08-12 17:16:0557#endif
[email protected]c6d068ff2011-10-14 17:28:2358
59 private:
60 // Overrides base class implementation to add custom handling for
61 // print and extensions.
[email protected]53416422011-11-21 16:53:5462 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
[email protected]c6d068ff2011-10-14 17:28:2363
64 // The callee expects to be returned a valid channel_id.
[email protected]3d9ec5052013-01-02 22:05:2565 void OnOpenChannelToExtension(int routing_id,
[email protected]686914f2013-04-25 04:54:5866 const ExtensionMsg_ExternalConnectionInfo& info,
67 const std::string& channel_name,
[email protected]8ad95b72013-10-16 02:54:1168 bool include_tls_channel_id,
[email protected]3d9ec5052013-01-02 22:05:2569 int* port_id);
[email protected]c6d068ff2011-10-14 17:28:2370
[email protected]1e54c1c2013-08-12 17:16:0571#if defined(ENABLE_PRINTING)
[email protected]b25f0032013-08-19 22:26:2572#if defined(OS_CHROMEOS) || defined(OS_ANDROID)
73 void OnAllocateTempFileForPrinting(int render_view_id,
74 base::FileDescriptor* renderer_fd,
[email protected]c6d068ff2011-10-14 17:28:2375 int* browser_fd);
[email protected]b5b79d72012-05-24 19:42:2876 void OnTempFileForPrintingWritten(int render_view_id, int browser_fd);
[email protected]c6d068ff2011-10-14 17:28:2377#endif
78
79 // PrintWebViewHelper expects default print settings.
80 void OnGetDefaultPrintSettings(PrintMsg_Print_Params* setting);
81
82 // PrintWebViewHelper expects final print settings from the user.
83 void OnScriptedPrint(const PrintHostMsg_ScriptedPrint_Params& params,
84 PrintMsg_PrintPages_Params* settings);
85
86 void OnDidGetPrintedPagesCount(int cookie, int number_pages);
87 void OnDidPrintPage(const PrintHostMsg_DidPrintPage_Params& params);
88 void OnDidGetPreviewPageCount(
89 const PrintHostMsg_DidGetPreviewPageCount_Params& params);
90 void OnDidPreviewPage(const PrintHostMsg_DidPreviewPage_Params& params);
[email protected]116d0962012-08-24 23:22:2891 void OnCheckForCancel(int32 preview_ui_id,
[email protected]c6d068ff2011-10-14 17:28:2392 int preview_request_id,
93 bool* cancel);
94
95
96 // For print preview, PrintWebViewHelper will update settings.
97 void OnUpdatePrintSettings(int document_cookie,
98 const base::DictionaryValue& job_settings,
99 PrintMsg_PrintPages_Params* params);
100
101 // A mock printer device used for printing tests.
102 scoped_ptr<MockPrinter> printer_;
103
104 // True to simulate user clicking print. False to cancel.
105 bool print_dialog_user_response_;
106
107 // Simulates cancelling print preview if |print_preview_pages_remaining_|
108 // equals this.
109 int print_preview_cancel_page_number_;
110
111 // Number of pages to generate for print preview.
112 int print_preview_pages_remaining_;
[email protected]1e54c1c2013-08-12 17:16:05113#endif
114
[email protected]c9a49a52013-10-25 02:20:53115 scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_;
116
[email protected]1e54c1c2013-08-12 17:16:05117 DISALLOW_COPY_AND_ASSIGN(ChromeMockRenderThread);
[email protected]c6d068ff2011-10-14 17:28:23118};
119
120#endif // CHROME_RENDERER_CHROME_MOCK_RENDER_THREAD_H_