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

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

Issue 257963003: Remove scroll_offset argument from MovePluginWindow (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
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 <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 virtual void SetBackground(const SkBitmap& background) OVERRIDE; 159 virtual void SetBackground(const SkBitmap& background) OVERRIDE;
160 160
161 // Overridden from RenderWidgetHostViewPort: 161 // Overridden from RenderWidgetHostViewPort:
162 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, 162 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view,
163 const gfx::Rect& pos) OVERRIDE; 163 const gfx::Rect& pos) OVERRIDE;
164 virtual void InitAsFullscreen( 164 virtual void InitAsFullscreen(
165 RenderWidgetHostView* reference_host_view) OVERRIDE; 165 RenderWidgetHostView* reference_host_view) OVERRIDE;
166 virtual void WasShown() OVERRIDE; 166 virtual void WasShown() OVERRIDE;
167 virtual void WasHidden() OVERRIDE; 167 virtual void WasHidden() OVERRIDE;
168 virtual void MovePluginWindows( 168 virtual void MovePluginWindows(
169 const gfx::Vector2d& scroll_offset,
170 const std::vector<WebPluginGeometry>& moves) OVERRIDE; 169 const std::vector<WebPluginGeometry>& moves) OVERRIDE;
171 virtual void Focus() OVERRIDE; 170 virtual void Focus() OVERRIDE;
172 virtual void Blur() OVERRIDE; 171 virtual void Blur() OVERRIDE;
173 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; 172 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE;
174 virtual void SetIsLoading(bool is_loading) OVERRIDE; 173 virtual void SetIsLoading(bool is_loading) OVERRIDE;
175 virtual void TextInputTypeChanged(ui::TextInputType type, 174 virtual void TextInputTypeChanged(ui::TextInputType type,
176 ui::TextInputMode input_mode, 175 ui::TextInputMode input_mode,
177 bool can_compose_inline) OVERRIDE; 176 bool can_compose_inline) OVERRIDE;
178 virtual void ImeCancelComposition() OVERRIDE; 177 virtual void ImeCancelComposition() OVERRIDE;
179 virtual void ImeCompositionRangeChanged( 178 virtual void ImeCompositionRangeChanged(
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 // etc. 738 // etc.
740 scoped_ptr<content::LegacyRenderWidgetHostHWND> 739 scoped_ptr<content::LegacyRenderWidgetHostHWND>
741 legacy_render_widget_host_HWND_; 740 legacy_render_widget_host_HWND_;
742 #endif 741 #endif
743 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 742 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
744 }; 743 };
745 744
746 } // namespace content 745 } // namespace content
747 746
748 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 747 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698