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

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

Issue 8100013: Start off the Content API by moving content::ContentRendererClient to content\public\renderer.BU... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 | « content/renderer/webplugin_delegate_proxy.cc ('k') | no next file » | 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) 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 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 #pragma once 7 #pragma once
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "content/renderer/content_renderer_client.h" 10 #include "content/public/renderer/content_renderer_client.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 class ShellContentRendererClient : public ContentRendererClient { 14 class ShellContentRendererClient : public ContentRendererClient {
15 public: 15 public:
16 virtual ~ShellContentRendererClient(); 16 virtual ~ShellContentRendererClient();
17 virtual void RenderThreadStarted() OVERRIDE; 17 virtual void RenderThreadStarted() OVERRIDE;
18 virtual void RenderViewCreated(RenderView* render_view) OVERRIDE; 18 virtual void RenderViewCreated(RenderView* render_view) OVERRIDE;
19 virtual void SetNumberOfViews(int number_of_views) OVERRIDE; 19 virtual void SetNumberOfViews(int number_of_views) OVERRIDE;
20 virtual SkBitmap* GetSadPluginBitmap() OVERRIDE; 20 virtual SkBitmap* GetSadPluginBitmap() OVERRIDE;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 virtual bool HandleSetCookieRequest(RenderView* sender, 61 virtual bool HandleSetCookieRequest(RenderView* sender,
62 const GURL& url, 62 const GURL& url,
63 const GURL& first_party_for_cookies, 63 const GURL& first_party_for_cookies,
64 const std::string& value) OVERRIDE; 64 const std::string& value) OVERRIDE;
65 virtual bool IsProtocolSupportedForMedia(const GURL& url) OVERRIDE; 65 virtual bool IsProtocolSupportedForMedia(const GURL& url) OVERRIDE;
66 }; 66 };
67 67
68 } // namespace content 68 } // namespace content
69 69
70 #endif // CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_ 70 #endif // CONTENT_SHELL_SHELL_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « content/renderer/webplugin_delegate_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698