| OLD | NEW |
| 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 #ifndef CHROME_TEST_RENDER_VIEW_TEST_H_ | 5 #ifndef CHROME_TEST_BASE_RENDER_VIEW_TEST_H_ |
| 6 #define CHROME_TEST_RENDER_VIEW_TEST_H_ | 6 #define CHROME_TEST_BASE_RENDER_VIEW_TEST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
| 14 #include "chrome/renderer/autofill/autofill_agent.h" | 14 #include "chrome/renderer/autofill/autofill_agent.h" |
| 15 #include "chrome/renderer/mock_keyboard.h" | 15 #include "chrome/renderer/mock_keyboard.h" |
| 16 #include "chrome/renderer/mock_render_thread.h" | 16 #include "chrome/renderer/mock_render_thread.h" |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 // Used to setup the process so renderers can run. | 101 // Used to setup the process so renderers can run. |
| 102 scoped_ptr<RendererMainPlatformDelegate> platform_; | 102 scoped_ptr<RendererMainPlatformDelegate> platform_; |
| 103 scoped_ptr<MainFunctionParams> params_; | 103 scoped_ptr<MainFunctionParams> params_; |
| 104 scoped_ptr<CommandLine> command_line_; | 104 scoped_ptr<CommandLine> command_line_; |
| 105 scoped_ptr<SandboxInitWrapper> sandbox_init_wrapper_; | 105 scoped_ptr<SandboxInitWrapper> sandbox_init_wrapper_; |
| 106 | 106 |
| 107 autofill::PasswordAutofillManager* password_autofill_; | 107 autofill::PasswordAutofillManager* password_autofill_; |
| 108 autofill::AutofillAgent* autofill_agent_; | 108 autofill::AutofillAgent* autofill_agent_; |
| 109 }; | 109 }; |
| 110 | 110 |
| 111 #endif // CHROME_TEST_RENDER_VIEW_TEST_H_ | 111 #endif // CHROME_TEST_BASE_RENDER_VIEW_TEST_H_ |
| OLD | NEW |