OLD | NEW |
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 #ifndef CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ |
6 #define CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ | 6 #define CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 | 9 |
11 #include "base/command_line.h" | 10 #include "base/command_line.h" |
12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
13 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
14 #include "base/string16.h" | 13 #include "base/string16.h" |
15 #include "content/public/browser/native_web_keyboard_event.h" | 14 #include "content/public/browser/native_web_keyboard_event.h" |
16 #include "content/public/common/main_function_params.h" | 15 #include "content/public/common/main_function_params.h" |
17 #include "content/public/renderer/content_renderer_client.h" | 16 #include "content/public/renderer/content_renderer_client.h" |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 scoped_ptr<content::MainFunctionParams> params_; | 135 scoped_ptr<content::MainFunctionParams> params_; |
137 scoped_ptr<CommandLine> command_line_; | 136 scoped_ptr<CommandLine> command_line_; |
138 | 137 |
139 private: | 138 private: |
140 void GoToOffset(int offset, const WebKit::WebHistoryItem& history_item); | 139 void GoToOffset(int offset, const WebKit::WebHistoryItem& history_item); |
141 }; | 140 }; |
142 | 141 |
143 } // namespace content | 142 } // namespace content |
144 | 143 |
145 #endif // CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ | 144 #endif // CONTENT_PUBLIC_TEST_RENDER_VIEW_TEST_H_ |
OLD | NEW |