| OLD | NEW |
| 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_WIN_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
| 7 | 7 |
| 8 #include <atlbase.h> | 8 #include <atlbase.h> |
| 9 #include <atlapp.h> | 9 #include <atlapp.h> |
| 10 #include <atlcrack.h> | 10 #include <atlcrack.h> |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 | 168 |
| 169 // Implementation of RenderWidgetHostViewPort. | 169 // Implementation of RenderWidgetHostViewPort. |
| 170 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, | 170 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, |
| 171 const gfx::Rect& pos) OVERRIDE; | 171 const gfx::Rect& pos) OVERRIDE; |
| 172 virtual void InitAsFullscreen( | 172 virtual void InitAsFullscreen( |
| 173 RenderWidgetHostView* reference_host_view) OVERRIDE; | 173 RenderWidgetHostView* reference_host_view) OVERRIDE; |
| 174 virtual void WasShown() OVERRIDE; | 174 virtual void WasShown() OVERRIDE; |
| 175 virtual void WasHidden() OVERRIDE; | 175 virtual void WasHidden() OVERRIDE; |
| 176 virtual void MovePluginWindows( | 176 virtual void MovePluginWindows( |
| 177 const gfx::Vector2d& scroll_offset, | 177 const gfx::Vector2d& scroll_offset, |
| 178 const std::vector<webkit::npapi::WebPluginGeometry>& moves) OVERRIDE; | 178 const std::vector<WebPluginGeometry>& moves) OVERRIDE; |
| 179 virtual void Focus() OVERRIDE; | 179 virtual void Focus() OVERRIDE; |
| 180 virtual void Blur() OVERRIDE; | 180 virtual void Blur() OVERRIDE; |
| 181 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 181 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
| 182 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 182 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
| 183 virtual void TextInputTypeChanged(ui::TextInputType type, | 183 virtual void TextInputTypeChanged(ui::TextInputType type, |
| 184 bool can_compose_inline, | 184 bool can_compose_inline, |
| 185 ui::TextInputMode input_mode) OVERRIDE; | 185 ui::TextInputMode input_mode) OVERRIDE; |
| 186 virtual void SelectionBoundsChanged( | 186 virtual void SelectionBoundsChanged( |
| 187 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; | 187 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; |
| 188 virtual void ScrollOffsetChanged() OVERRIDE; | 188 virtual void ScrollOffsetChanged() OVERRIDE; |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 base::win::ScopedComPtr<IAccessible> window_iaccessible_; | 599 base::win::ScopedComPtr<IAccessible> window_iaccessible_; |
| 600 | 600 |
| 601 ui::LatencyInfo software_latency_info_; | 601 ui::LatencyInfo software_latency_info_; |
| 602 | 602 |
| 603 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 603 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
| 604 }; | 604 }; |
| 605 | 605 |
| 606 } // namespace content | 606 } // namespace content |
| 607 | 607 |
| 608 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 608 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
| OLD | NEW |