| OLD | NEW |
| 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 #ifndef CHROME_RENDERER_MOCK_RENDER_THREAD_H_ | 5 #ifndef CHROME_RENDERER_MOCK_RENDER_THREAD_H_ |
| 6 #define CHROME_RENDERER_MOCK_RENDER_THREAD_H_ | 6 #define CHROME_RENDERER_MOCK_RENDER_THREAD_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | |
| 11 | 10 |
| 12 #include "chrome/common/ipc_test_sink.h" | 11 #include "chrome/common/ipc_test_sink.h" |
| 13 #include "chrome/renderer/mock_printer.h" | 12 #include "chrome/renderer/mock_printer.h" |
| 14 #include "chrome/renderer/render_thread.h" | 13 #include "chrome/renderer/render_thread.h" |
| 15 #include "third_party/WebKit/WebKit/chromium/public/WebPopupType.h" | 14 #include "third_party/WebKit/WebKit/chromium/public/WebPopupType.h" |
| 16 | 15 |
| 17 struct ViewMsg_Print_Params; | 16 struct ViewMsg_Print_Params; |
| 18 struct ViewMsg_PrintPages_Params; | 17 struct ViewMsg_PrintPages_Params; |
| 19 struct ViewHostMsg_ScriptedPrint_Params; | 18 struct ViewHostMsg_ScriptedPrint_Params; |
| 20 | 19 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 // The last known good deserializer for sync messages. | 132 // The last known good deserializer for sync messages. |
| 134 scoped_ptr<IPC::MessageReplyDeserializer> reply_deserializer_; | 133 scoped_ptr<IPC::MessageReplyDeserializer> reply_deserializer_; |
| 135 | 134 |
| 136 // A mock printer device used for printing tests. | 135 // A mock printer device used for printing tests. |
| 137 scoped_ptr<MockPrinter> printer_; | 136 scoped_ptr<MockPrinter> printer_; |
| 138 | 137 |
| 139 bool is_extension_process_; | 138 bool is_extension_process_; |
| 140 }; | 139 }; |
| 141 | 140 |
| 142 #endif // CHROME_RENDERER_MOCK_RENDER_THREAD_H_ | 141 #endif // CHROME_RENDERER_MOCK_RENDER_THREAD_H_ |
| OLD | NEW |