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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_mus.h

Issue 1813143002: 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: rebase 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_MUS_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 bool PostProcessEventForPluginIme( 117 bool PostProcessEventForPluginIme(
118 const NativeWebKeyboardEvent& event) override; 118 const NativeWebKeyboardEvent& event) override;
119 #endif // defined(OS_MACOSX) 119 #endif // defined(OS_MACOSX)
120 120
121 void LockCompositingSurface() override; 121 void LockCompositingSurface() override;
122 void UnlockCompositingSurface() override; 122 void UnlockCompositingSurface() override;
123 123
124 #if defined(OS_WIN) 124 #if defined(OS_WIN)
125 void SetParentNativeViewAccessible( 125 void SetParentNativeViewAccessible(
126 gfx::NativeViewAccessible accessible_parent) override; 126 gfx::NativeViewAccessible accessible_parent) override;
127 gfx::NativeViewId GetParentForWindowlessPlugin() const override;
128 #endif 127 #endif
129 128
130 RenderWidgetHostImpl* host_; 129 RenderWidgetHostImpl* host_;
131 130
132 aura::Window* aura_window_; 131 aura::Window* aura_window_;
133 132
134 scoped_ptr<mus::ScopedWindowPtr> mus_window_; 133 scoped_ptr<mus::ScopedWindowPtr> mus_window_;
135 134
136 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMus); 135 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMus);
137 }; 136 };
138 137
139 } // namespace content 138 } // namespace content
140 139
141 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_ 140 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698