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.cc

Issue 1815593002: Remove windowed NPAPI code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@make_test_plugin_windowless
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 #include "content/browser/renderer_host/render_widget_host_view_mus.h" 5 #include "content/browser/renderer_host/render_widget_host_view_mus.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "components/mus/public/cpp/window.h" 10 #include "components/mus/public/cpp/window.h"
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 } 172 }
173 173
174 gfx::NativeViewId RenderWidgetHostViewMus::GetNativeViewId() const { 174 gfx::NativeViewId RenderWidgetHostViewMus::GetNativeViewId() const {
175 return gfx::NativeViewId(); 175 return gfx::NativeViewId();
176 } 176 }
177 177
178 gfx::NativeViewAccessible RenderWidgetHostViewMus::GetNativeViewAccessible() { 178 gfx::NativeViewAccessible RenderWidgetHostViewMus::GetNativeViewAccessible() {
179 return gfx::NativeViewAccessible(); 179 return gfx::NativeViewAccessible();
180 } 180 }
181 181
182 void RenderWidgetHostViewMus::MovePluginWindows(
183 const std::vector<WebPluginGeometry>& moves) {
184 }
185
186 void RenderWidgetHostViewMus::UpdateCursor(const WebCursor& cursor) { 182 void RenderWidgetHostViewMus::UpdateCursor(const WebCursor& cursor) {
187 // TODO(fsamuel): Implement cursors in Mus. 183 // TODO(fsamuel): Implement cursors in Mus.
188 NOTIMPLEMENTED(); 184 NOTIMPLEMENTED();
189 } 185 }
190 186
191 void RenderWidgetHostViewMus::SetIsLoading(bool is_loading) { 187 void RenderWidgetHostViewMus::SetIsLoading(bool is_loading) {
192 } 188 }
193 189
194 void RenderWidgetHostViewMus::TextInputStateChanged( 190 void RenderWidgetHostViewMus::TextInputStateChanged(
195 const ViewHostMsg_TextInputState_Params& params) { 191 const ViewHostMsg_TextInputState_Params& params) {
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 void RenderWidgetHostViewMus::SetParentNativeViewAccessible( 320 void RenderWidgetHostViewMus::SetParentNativeViewAccessible(
325 gfx::NativeViewAccessible accessible_parent) {} 321 gfx::NativeViewAccessible accessible_parent) {}
326 322
327 gfx::NativeViewId RenderWidgetHostViewMus::GetParentForWindowlessPlugin() 323 gfx::NativeViewId RenderWidgetHostViewMus::GetParentForWindowlessPlugin()
328 const { 324 const {
329 return gfx::NativeViewId(); 325 return gfx::NativeViewId();
330 } 326 }
331 #endif 327 #endif
332 328
333 } // namespace content 329 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_mus.h ('k') | content/browser/web_contents/web_contents_view_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698