| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 virtual void WasShown() OVERRIDE; | 175 virtual void WasShown() OVERRIDE; |
| 176 virtual void WasHidden() OVERRIDE; | 176 virtual void WasHidden() OVERRIDE; |
| 177 virtual void MovePluginWindows( | 177 virtual void MovePluginWindows( |
| 178 const gfx::Vector2d& scroll_offset, | 178 const gfx::Vector2d& scroll_offset, |
| 179 const std::vector<WebPluginGeometry>& moves) OVERRIDE; | 179 const std::vector<WebPluginGeometry>& moves) OVERRIDE; |
| 180 virtual void Focus() OVERRIDE; | 180 virtual void Focus() OVERRIDE; |
| 181 virtual void Blur() OVERRIDE; | 181 virtual void Blur() OVERRIDE; |
| 182 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 182 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
| 183 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 183 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
| 184 virtual void TextInputTypeChanged(ui::TextInputType type, | 184 virtual void TextInputTypeChanged(ui::TextInputType type, |
| 185 bool can_compose_inline, | 185 ui::TextInputMode input_mode, |
| 186 ui::TextInputMode input_mode) OVERRIDE; | 186 bool can_compose_inline) OVERRIDE; |
| 187 virtual void SelectionBoundsChanged( | 187 virtual void SelectionBoundsChanged( |
| 188 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; | 188 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; |
| 189 virtual void ScrollOffsetChanged() OVERRIDE; | 189 virtual void ScrollOffsetChanged() OVERRIDE; |
| 190 virtual void ImeCancelComposition() OVERRIDE; | 190 virtual void ImeCancelComposition() OVERRIDE; |
| 191 virtual void ImeCompositionRangeChanged( | 191 virtual void ImeCompositionRangeChanged( |
| 192 const ui::Range& range, | 192 const ui::Range& range, |
| 193 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; | 193 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; |
| 194 virtual void DidUpdateBackingStore( | 194 virtual void DidUpdateBackingStore( |
| 195 const gfx::Rect& scroll_rect, | 195 const gfx::Rect& scroll_rect, |
| 196 const gfx::Vector2d& scroll_delta, | 196 const gfx::Vector2d& scroll_delta, |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 base::win::ScopedComPtr<IAccessible> window_iaccessible_; | 605 base::win::ScopedComPtr<IAccessible> window_iaccessible_; |
| 606 | 606 |
| 607 ui::LatencyInfo software_latency_info_; | 607 ui::LatencyInfo software_latency_info_; |
| 608 | 608 |
| 609 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 609 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
| 610 }; | 610 }; |
| 611 | 611 |
| 612 } // namespace content | 612 } // namespace content |
| 613 | 613 |
| 614 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 614 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
| OLD | NEW |