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

Side by Side Diff: content/plugin/webplugin_proxy.h

Issue 1825253002: Revert of Remove a bunch of NPAPI quirks and related support code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_windowed_plugins
Patch Set: Created 4 years, 9 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
« no previous file with comments | « content/plugin/webplugin_delegate_stub.cc ('k') | content/plugin/webplugin_proxy.cc » ('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_PLUGIN_WEBPLUGIN_PROXY_H_ 5 #ifndef CONTENT_PLUGIN_WEBPLUGIN_PROXY_H_
6 #define CONTENT_PLUGIN_WEBPLUGIN_PROXY_H_ 6 #define CONTENT_PLUGIN_WEBPLUGIN_PROXY_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 const GURL& first_party_for_cookies) override; 65 const GURL& first_party_for_cookies) override;
66 void UpdateGeometry(const gfx::Rect& window_rect, 66 void UpdateGeometry(const gfx::Rect& window_rect,
67 const gfx::Rect& clip_rect, 67 const gfx::Rect& clip_rect,
68 const TransportDIB::Handle& windowless_buffer0, 68 const TransportDIB::Handle& windowless_buffer0,
69 const TransportDIB::Handle& windowless_buffer1, 69 const TransportDIB::Handle& windowless_buffer1,
70 int windowless_buffer_index); 70 int windowless_buffer_index);
71 void CancelDocumentLoad() override; 71 void CancelDocumentLoad() override;
72 void DidStartLoading() override; 72 void DidStartLoading() override;
73 void DidStopLoading() override; 73 void DidStopLoading() override;
74 bool IsOffTheRecord() override; 74 bool IsOffTheRecord() override;
75 #if defined(OS_WIN)
76 void SetWindowlessData(HANDLE pump_messages_event,
77 gfx::NativeViewId dummy_activation_window) override;
78 #endif
75 #if defined(OS_MACOSX) 79 #if defined(OS_MACOSX)
76 void FocusChanged(bool focused) override; 80 void FocusChanged(bool focused) override;
77 void StartIme() override; 81 void StartIme() override;
78 WebPluginAcceleratedSurface* GetAcceleratedSurface( 82 WebPluginAcceleratedSurface* GetAcceleratedSurface(
79 gfx::GpuPreference gpu_preference) override; 83 gfx::GpuPreference gpu_preference) override;
80 void AcceleratedPluginEnabledRendering() override; 84 void AcceleratedPluginEnabledRendering() override;
81 void AcceleratedPluginAllocatedIOSurface(int32_t width, 85 void AcceleratedPluginAllocatedIOSurface(int32_t width,
82 int32_t height, 86 int32_t height,
83 uint32_t surface_id) override; 87 uint32_t surface_id) override;
84 void AcceleratedPluginSwappedIOSurface() override; 88 void AcceleratedPluginSwappedIOSurface() override;
(...skipping 11 matching lines...) Expand all
96 int host_render_view_routing_id() const { 100 int host_render_view_routing_id() const {
97 return host_render_view_routing_id_; 101 return host_render_view_routing_id_;
98 } 102 }
99 103
100 // For windowless plugins, paints the given rectangle into the local buffer. 104 // For windowless plugins, paints the given rectangle into the local buffer.
101 void Paint(const gfx::Rect& rect); 105 void Paint(const gfx::Rect& rect);
102 106
103 // Callback from the renderer to let us know that a paint occurred. 107 // Callback from the renderer to let us know that a paint occurred.
104 void DidPaint(); 108 void DidPaint();
105 109
110 #if defined(OS_WIN) && !defined(USE_AURA)
111 // Retrieves the IME status from a windowless plugin and sends it to a
112 // renderer process. A renderer process will convert the coordinates from
113 // local to the window coordinates and send the converted coordinates to a
114 // browser process.
115 void UpdateIMEStatus();
116 #endif
117
106 private: 118 private:
107 class SharedTransportDIB : public base::RefCounted<SharedTransportDIB> { 119 class SharedTransportDIB : public base::RefCounted<SharedTransportDIB> {
108 public: 120 public:
109 explicit SharedTransportDIB(TransportDIB* dib); 121 explicit SharedTransportDIB(TransportDIB* dib);
110 TransportDIB* dib() { return dib_.get(); } 122 TransportDIB* dib() { return dib_.get(); }
111 private: 123 private:
112 friend class base::RefCounted<SharedTransportDIB>; 124 friend class base::RefCounted<SharedTransportDIB>;
113 ~SharedTransportDIB(); 125 ~SharedTransportDIB();
114 126
115 scoped_ptr<TransportDIB> dib_; 127 scoped_ptr<TransportDIB> dib_;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 183
172 // Contains the routing id of the host render view. 184 // Contains the routing id of the host render view.
173 int host_render_view_routing_id_; 185 int host_render_view_routing_id_;
174 186
175 base::WeakPtrFactory<WebPluginProxy> weak_factory_; 187 base::WeakPtrFactory<WebPluginProxy> weak_factory_;
176 }; 188 };
177 189
178 } // namespace content 190 } // namespace content
179 191
180 #endif // CONTENT_PLUGIN_WEBPLUGIN_PROXY_H_ 192 #endif // CONTENT_PLUGIN_WEBPLUGIN_PROXY_H_
OLDNEW
« no previous file with comments | « content/plugin/webplugin_delegate_stub.cc ('k') | content/plugin/webplugin_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698