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

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 105553005: Make PepperWebPlugin not use RenderViews. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments Created 7 years 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 14 matching lines...) Expand all
25 class RenderProcessHost; 25 class RenderProcessHost;
26 class RenderViewHostImpl; 26 class RenderViewHostImpl;
27 27
28 class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost { 28 class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost {
29 public: 29 public:
30 static RenderFrameHostImpl* FromID(int process_id, int routing_id); 30 static RenderFrameHostImpl* FromID(int process_id, int routing_id);
31 31
32 virtual ~RenderFrameHostImpl(); 32 virtual ~RenderFrameHostImpl();
33 33
34 // RenderFrameHost 34 // RenderFrameHost
35 virtual SiteInstance* GetSiteInstance() OVERRIDE;
35 virtual RenderProcessHost* GetProcess() OVERRIDE; 36 virtual RenderProcessHost* GetProcess() OVERRIDE;
36 virtual int GetRoutingID() OVERRIDE; 37 virtual int GetRoutingID() OVERRIDE;
38 virtual gfx::NativeView GetNativeView() OVERRIDE;
37 39
38 // IPC::Sender 40 // IPC::Sender
39 virtual bool Send(IPC::Message* msg) OVERRIDE; 41 virtual bool Send(IPC::Message* msg) OVERRIDE;
40 42
41 // IPC::Listener 43 // IPC::Listener
42 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; 44 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
43 45
44 void Init(); 46 void Init();
45 int routing_id() const { return routing_id_; } 47 int routing_id() const { return routing_id_; }
46 void OnCreateChildFrame(int new_frame_routing_id, 48 void OnCreateChildFrame(int new_frame_routing_id,
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 98
97 int routing_id_; 99 int routing_id_;
98 bool is_swapped_out_; 100 bool is_swapped_out_;
99 101
100 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 102 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
101 }; 103 };
102 104
103 } // namespace content 105 } // namespace content
104 106
105 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 107 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/renderer/extensions/extension_frame_helper.cc ('k') | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698