| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE; | 285 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE; |
| 286 virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE; | 286 virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE; |
| 287 virtual bool DeleteRange(const gfx::Range& range) OVERRIDE; | 287 virtual bool DeleteRange(const gfx::Range& range) OVERRIDE; |
| 288 virtual bool GetTextFromRange(const gfx::Range& range, | 288 virtual bool GetTextFromRange(const gfx::Range& range, |
| 289 string16* text) const OVERRIDE; | 289 string16* text) const OVERRIDE; |
| 290 virtual void OnInputMethodChanged() OVERRIDE; | 290 virtual void OnInputMethodChanged() OVERRIDE; |
| 291 virtual bool ChangeTextDirectionAndLayoutAlignment( | 291 virtual bool ChangeTextDirectionAndLayoutAlignment( |
| 292 base::i18n::TextDirection direction) OVERRIDE; | 292 base::i18n::TextDirection direction) OVERRIDE; |
| 293 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE; | 293 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE; |
| 294 virtual void EnsureCaretInRect(const gfx::Rect& rect) OVERRIDE; | 294 virtual void EnsureCaretInRect(const gfx::Rect& rect) OVERRIDE; |
| 295 virtual void OnCandidateWindowShow() OVERRIDE {} |
| 296 virtual void OnCandidateWindowUpdate() OVERRIDE {} |
| 297 virtual void OnCandidateWindowHide() OVERRIDE {} |
| 295 | 298 |
| 296 protected: | 299 protected: |
| 297 friend class RenderWidgetHostView; | 300 friend class RenderWidgetHostView; |
| 298 | 301 |
| 299 // Should construct only via RenderWidgetHostView::CreateViewForWidget. | 302 // Should construct only via RenderWidgetHostView::CreateViewForWidget. |
| 300 // | 303 // |
| 301 // The view will associate itself with the given widget. | 304 // The view will associate itself with the given widget. |
| 302 explicit RenderWidgetHostViewWin(RenderWidgetHost* widget); | 305 explicit RenderWidgetHostViewWin(RenderWidgetHost* widget); |
| 303 | 306 |
| 304 // Windows Message Handlers | 307 // Windows Message Handlers |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 base::win::ScopedComPtr<IAccessible> window_iaccessible_; | 607 base::win::ScopedComPtr<IAccessible> window_iaccessible_; |
| 605 | 608 |
| 606 ui::LatencyInfo software_latency_info_; | 609 ui::LatencyInfo software_latency_info_; |
| 607 | 610 |
| 608 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 611 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
| 609 }; | 612 }; |
| 610 | 613 |
| 611 } // namespace content | 614 } // namespace content |
| 612 | 615 |
| 613 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 616 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
| OLD | NEW |