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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.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
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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 const ui::LatencyInfo& latency) override; 203 const ui::LatencyInfo& latency) override;
204 void ProcessGestureEvent(const blink::WebGestureEvent& event, 204 void ProcessGestureEvent(const blink::WebGestureEvent& event,
205 const ui::LatencyInfo& latency) override; 205 const ui::LatencyInfo& latency) override;
206 void TransformPointToLocalCoordSpace(const gfx::Point& point, 206 void TransformPointToLocalCoordSpace(const gfx::Point& point,
207 cc::SurfaceId original_surface, 207 cc::SurfaceId original_surface,
208 gfx::Point* transformed_point) override; 208 gfx::Point* transformed_point) override;
209 209
210 #if defined(OS_WIN) 210 #if defined(OS_WIN)
211 void SetParentNativeViewAccessible( 211 void SetParentNativeViewAccessible(
212 gfx::NativeViewAccessible accessible_parent) override; 212 gfx::NativeViewAccessible accessible_parent) override;
213 gfx::NativeViewId GetParentForWindowlessPlugin() const override;
213 #endif 214 #endif
214 215
215 // Overridden from ui::TextInputClient: 216 // Overridden from ui::TextInputClient:
216 void SetCompositionText(const ui::CompositionText& composition) override; 217 void SetCompositionText(const ui::CompositionText& composition) override;
217 void ConfirmCompositionText() override; 218 void ConfirmCompositionText() override;
218 void ClearCompositionText() override; 219 void ClearCompositionText() override;
219 void InsertText(const base::string16& text) override; 220 void InsertText(const base::string16& text) override;
220 void InsertChar(const ui::KeyEvent& event) override; 221 void InsertChar(const ui::KeyEvent& event) override;
221 ui::TextInputType GetTextInputType() const override; 222 ui::TextInputType GetTextInputType() const override;
222 ui::TextInputMode GetTextInputMode() const override; 223 ui::TextInputMode GetTextInputMode() const override;
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 bool disable_input_event_router_for_testing_; 694 bool disable_input_event_router_for_testing_;
694 695
695 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 696 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
696 697
697 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 698 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
698 }; 699 };
699 700
700 } // namespace content 701 } // namespace content
701 702
702 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 703 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698