| 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_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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 bool GetSelectionRange(gfx::Range* range) const override; | 234 bool GetSelectionRange(gfx::Range* range) const override; |
| 235 bool SetSelectionRange(const gfx::Range& range) override; | 235 bool SetSelectionRange(const gfx::Range& range) override; |
| 236 bool DeleteRange(const gfx::Range& range) override; | 236 bool DeleteRange(const gfx::Range& range) override; |
| 237 bool GetTextFromRange(const gfx::Range& range, | 237 bool GetTextFromRange(const gfx::Range& range, |
| 238 base::string16* text) const override; | 238 base::string16* text) const override; |
| 239 void OnInputMethodChanged() override; | 239 void OnInputMethodChanged() override; |
| 240 bool ChangeTextDirectionAndLayoutAlignment( | 240 bool ChangeTextDirectionAndLayoutAlignment( |
| 241 base::i18n::TextDirection direction) override; | 241 base::i18n::TextDirection direction) override; |
| 242 void ExtendSelectionAndDelete(size_t before, size_t after) override; | 242 void ExtendSelectionAndDelete(size_t before, size_t after) override; |
| 243 void EnsureCaretInRect(const gfx::Rect& rect) override; | 243 void EnsureCaretInRect(const gfx::Rect& rect) override; |
| 244 bool IsEditCommandEnabled(int command_id) const override; | 244 bool IsTextEditCommandEnabled(ui::TextEditCommand command) const override; |
| 245 void SetEditCommandForNextKeyEvent(int command_id) override; | 245 void SetTextEditCommandForNextKeyEvent(ui::TextEditCommand command) override; |
| 246 | 246 |
| 247 // Overridden from display::DisplayObserver: | 247 // Overridden from display::DisplayObserver: |
| 248 void OnDisplayAdded(const display::Display& new_display) override; | 248 void OnDisplayAdded(const display::Display& new_display) override; |
| 249 void OnDisplayRemoved(const display::Display& old_display) override; | 249 void OnDisplayRemoved(const display::Display& old_display) override; |
| 250 void OnDisplayMetricsChanged(const display::Display& display, | 250 void OnDisplayMetricsChanged(const display::Display& display, |
| 251 uint32_t metrics) override; | 251 uint32_t metrics) override; |
| 252 | 252 |
| 253 // Overridden from aura::WindowDelegate: | 253 // Overridden from aura::WindowDelegate: |
| 254 gfx::Size GetMinimumSize() const override; | 254 gfx::Size GetMinimumSize() const override; |
| 255 gfx::Size GetMaximumSize() const override; | 255 gfx::Size GetMaximumSize() const override; |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 bool disable_input_event_router_for_testing_; | 693 bool disable_input_event_router_for_testing_; |
| 694 | 694 |
| 695 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 695 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 696 | 696 |
| 697 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 697 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 698 }; | 698 }; |
| 699 | 699 |
| 700 } // namespace content | 700 } // namespace content |
| 701 | 701 |
| 702 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 702 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |