| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 virtual ui::TextInputType GetTextInputType() const OVERRIDE; | 171 virtual ui::TextInputType GetTextInputType() const OVERRIDE; |
| 172 virtual gfx::Rect GetCaretBounds() OVERRIDE; | 172 virtual gfx::Rect GetCaretBounds() OVERRIDE; |
| 173 virtual bool HasCompositionText() OVERRIDE; | 173 virtual bool HasCompositionText() OVERRIDE; |
| 174 virtual bool GetTextRange(ui::Range* range) OVERRIDE; | 174 virtual bool GetTextRange(ui::Range* range) OVERRIDE; |
| 175 virtual bool GetCompositionTextRange(ui::Range* range) OVERRIDE; | 175 virtual bool GetCompositionTextRange(ui::Range* range) OVERRIDE; |
| 176 virtual bool GetSelectionRange(ui::Range* range) OVERRIDE; | 176 virtual bool GetSelectionRange(ui::Range* range) OVERRIDE; |
| 177 virtual bool SetSelectionRange(const ui::Range& range) OVERRIDE; | 177 virtual bool SetSelectionRange(const ui::Range& range) OVERRIDE; |
| 178 virtual bool DeleteRange(const ui::Range& range) OVERRIDE; | 178 virtual bool DeleteRange(const ui::Range& range) OVERRIDE; |
| 179 virtual bool GetTextFromRange( | 179 virtual bool GetTextFromRange( |
| 180 const ui::Range& range, | 180 const ui::Range& range, |
| 181 const base::Callback<void(const string16&)>& callback) OVERRIDE; | 181 string16* text, |
| 182 ui::Range* actual_range) OVERRIDE; |
| 182 virtual void OnInputMethodChanged() OVERRIDE; | 183 virtual void OnInputMethodChanged() OVERRIDE; |
| 183 virtual bool ChangeTextDirectionAndLayoutAlignment( | 184 virtual bool ChangeTextDirectionAndLayoutAlignment( |
| 184 base::i18n::TextDirection direction) OVERRIDE; | 185 base::i18n::TextDirection direction) OVERRIDE; |
| 185 virtual views::View* GetOwnerViewOfTextInputClient() OVERRIDE; | 186 virtual views::View* GetOwnerViewOfTextInputClient() OVERRIDE; |
| 186 | 187 |
| 187 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) | 188 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) |
| 188 virtual void AcceleratedSurfaceNew( | 189 virtual void AcceleratedSurfaceNew( |
| 189 int32 width, | 190 int32 width, |
| 190 int32 height, | 191 int32 height, |
| 191 uint64* surface_id, | 192 uint64* surface_id, |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 | 317 |
| 317 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) | 318 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) |
| 318 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > | 319 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > |
| 319 accelerated_surface_containers_; | 320 accelerated_surface_containers_; |
| 320 #endif | 321 #endif |
| 321 | 322 |
| 322 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); | 323 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); |
| 323 }; | 324 }; |
| 324 | 325 |
| 325 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 326 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
| OLD | NEW |