| 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_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ |
| 6 #define CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ | 6 #define CONTENT_SHELL_SHELL_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 "base/platform_file.h" | |
| 11 #include "content/public/renderer/content_renderer_client.h" | 10 #include "content/public/renderer/content_renderer_client.h" |
| 12 | 11 |
| 13 namespace blink { | 12 namespace blink { |
| 14 class WebFrame; | 13 class WebFrame; |
| 15 class WebPlugin; | 14 class WebPlugin; |
| 16 struct WebPluginParams; | 15 struct WebPluginParams; |
| 17 } | 16 } |
| 18 | 17 |
| 19 namespace content { | 18 namespace content { |
| 20 | 19 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 private: | 52 private: |
| 54 void WebTestProxyCreated(RenderView* render_view, WebTestProxyBase* proxy); | 53 void WebTestProxyCreated(RenderView* render_view, WebTestProxyBase* proxy); |
| 55 | 54 |
| 56 scoped_ptr<ShellRenderProcessObserver> shell_observer_; | 55 scoped_ptr<ShellRenderProcessObserver> shell_observer_; |
| 57 scoped_ptr<MockWebClipboardImpl> clipboard_; | 56 scoped_ptr<MockWebClipboardImpl> clipboard_; |
| 58 }; | 57 }; |
| 59 | 58 |
| 60 } // namespace content | 59 } // namespace content |
| 61 | 60 |
| 62 #endif // CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ | 61 #endif // CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |