| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 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_SHELL_LAYOUT_TEST_CONTENT_RENDERER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_RENDERER_CLIENT_H
_ |
| 6 #define CONTENT_SHELL_LAYOUT_TEST_CONTENT_RENDERER_CLIENT_H_ | 6 #define CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_RENDERER_CLIENT_H
_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "content/shell/renderer/shell_content_renderer_client.h" | 10 #include "content/shell/renderer/shell_content_renderer_client.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 class WebFrame; | 13 class WebFrame; |
| 14 class WebPlugin; | 14 class WebPlugin; |
| 15 struct WebPluginParams; | 15 struct WebPluginParams; |
| 16 } | 16 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 46 | 46 |
| 47 private: | 47 private: |
| 48 void WebTestProxyCreated(RenderView* render_view, WebTestProxyBase* proxy); | 48 void WebTestProxyCreated(RenderView* render_view, WebTestProxyBase* proxy); |
| 49 | 49 |
| 50 scoped_ptr<LayoutTestRenderProcessObserver> shell_observer_; | 50 scoped_ptr<LayoutTestRenderProcessObserver> shell_observer_; |
| 51 scoped_ptr<MockWebClipboardImpl> clipboard_; | 51 scoped_ptr<MockWebClipboardImpl> clipboard_; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace content | 54 } // namespace content |
| 55 | 55 |
| 56 #endif // CONTENT_SHELL_LAYOUT_TEST_CONTENT_RENDERER_CLIENT_H_ | 56 #endif // CONTENT_SHELL_RENDERER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_RENDERER_CLIEN
T_H_ |
| OLD | NEW |