Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(286)

Side by Side Diff: content/shell/renderer/shell_content_renderer_client.h

Issue 25705004: content: Move MockWebClipboardImpl into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mv TestWebKitPlatformSupport too Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/test/mock_webclipboard_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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" 10 #include "base/platform_file.h"
11 #include "content/public/renderer/content_renderer_client.h" 11 #include "content/public/renderer/content_renderer_client.h"
12 12
13 namespace WebKit { 13 namespace WebKit {
14 class WebFrame; 14 class WebFrame;
15 class WebPlugin; 15 class WebPlugin;
16 struct WebPluginParams; 16 struct WebPluginParams;
17 } 17 }
18 18
19 namespace WebTestRunner { 19 namespace WebTestRunner {
20 class WebTestProxyBase; 20 class WebTestProxyBase;
21 } 21 }
22 22
23 class MockWebClipboardImpl;
24
25 namespace content { 23 namespace content {
26 24
25 class MockWebClipboardImpl;
27 class ShellRenderProcessObserver; 26 class ShellRenderProcessObserver;
28 27
29 class ShellContentRendererClient : public ContentRendererClient { 28 class ShellContentRendererClient : public ContentRendererClient {
30 public: 29 public:
31 static ShellContentRendererClient* Get(); 30 static ShellContentRendererClient* Get();
32 31
33 ShellContentRendererClient(); 32 ShellContentRendererClient();
34 virtual ~ShellContentRendererClient(); 33 virtual ~ShellContentRendererClient();
35 34
36 // ContentRendererClient implementation. 35 // ContentRendererClient implementation.
(...skipping 22 matching lines...) Expand all
59 void WebTestProxyCreated(RenderView* render_view, 58 void WebTestProxyCreated(RenderView* render_view,
60 WebTestRunner::WebTestProxyBase* proxy); 59 WebTestRunner::WebTestProxyBase* proxy);
61 60
62 scoped_ptr<ShellRenderProcessObserver> shell_observer_; 61 scoped_ptr<ShellRenderProcessObserver> shell_observer_;
63 scoped_ptr<MockWebClipboardImpl> clipboard_; 62 scoped_ptr<MockWebClipboardImpl> clipboard_;
64 }; 63 };
65 64
66 } // namespace content 65 } // namespace content
67 66
68 #endif // CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ 67 #endif // CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | content/test/mock_webclipboard_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698