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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 1484013003: mustash: Implement basic input event routing in renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: The right diff Created 5 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
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_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 bool has_focus() const { return has_focus_; } 237 bool has_focus() const { return has_focus_; }
238 238
239 // Sets page-level focus in this view and notifies plugins and Blink's 239 // Sets page-level focus in this view and notifies plugins and Blink's
240 // FocusController. 240 // FocusController.
241 void SetFocus(bool enable); 241 void SetFocus(bool enable);
242 242
243 void AttachWebFrameWidget(blink::WebWidget* frame_widget); 243 void AttachWebFrameWidget(blink::WebWidget* frame_widget);
244 244
245 scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback) override; 245 scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback) override;
246 246
247
248 // Plugin-related functions -------------------------------------------------- 247 // Plugin-related functions --------------------------------------------------
249 248
250 #if defined(ENABLE_PLUGINS) 249 #if defined(ENABLE_PLUGINS)
251 // Get/set the plugin which will be used as to handle document find requests. 250 // Get/set the plugin which will be used as to handle document find requests.
252 void set_plugin_find_handler(PepperPluginInstanceImpl* plugin) { 251 void set_plugin_find_handler(PepperPluginInstanceImpl* plugin) {
253 plugin_find_handler_ = plugin; 252 plugin_find_handler_ = plugin;
254 } 253 }
255 PepperPluginInstanceImpl* plugin_find_handler() { 254 PepperPluginInstanceImpl* plugin_find_handler() {
256 return plugin_find_handler_; 255 return plugin_find_handler_;
257 } 256 }
(...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after
1034 // use the Observer interface to filter IPC messages and receive frame change 1033 // use the Observer interface to filter IPC messages and receive frame change
1035 // notifications. 1034 // notifications.
1036 // --------------------------------------------------------------------------- 1035 // ---------------------------------------------------------------------------
1037 1036
1038 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1037 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1039 }; 1038 };
1040 1039
1041 } // namespace content 1040 } // namespace content
1042 1041
1043 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1042 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698