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 <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 virtual void OnInputMethodChanged() OVERRIDE; | 252 virtual void OnInputMethodChanged() OVERRIDE; |
253 virtual bool ChangeTextDirectionAndLayoutAlignment( | 253 virtual bool ChangeTextDirectionAndLayoutAlignment( |
254 base::i18n::TextDirection direction) OVERRIDE; | 254 base::i18n::TextDirection direction) OVERRIDE; |
255 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE; | 255 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE; |
256 virtual void EnsureCaretInRect(const gfx::Rect& rect) OVERRIDE; | 256 virtual void EnsureCaretInRect(const gfx::Rect& rect) OVERRIDE; |
257 virtual void OnCandidateWindowShown() OVERRIDE; | 257 virtual void OnCandidateWindowShown() OVERRIDE; |
258 virtual void OnCandidateWindowUpdated() OVERRIDE; | 258 virtual void OnCandidateWindowUpdated() OVERRIDE; |
259 virtual void OnCandidateWindowHidden() OVERRIDE; | 259 virtual void OnCandidateWindowHidden() OVERRIDE; |
260 | 260 |
261 // Overridden from gfx::DisplayObserver: | 261 // Overridden from gfx::DisplayObserver: |
262 virtual void OnDisplayBoundsChanged(const gfx::Display& display) OVERRIDE; | |
263 virtual void OnDisplayAdded(const gfx::Display& new_display) OVERRIDE; | 262 virtual void OnDisplayAdded(const gfx::Display& new_display) OVERRIDE; |
264 virtual void OnDisplayRemoved(const gfx::Display& old_display) OVERRIDE; | 263 virtual void OnDisplayRemoved(const gfx::Display& old_display) OVERRIDE; |
| 264 virtual void OnDisplayMetricsChanged(const gfx::Display& display, |
| 265 uint32_t metrics) OVERRIDE; |
265 | 266 |
266 // Overridden from aura::WindowDelegate: | 267 // Overridden from aura::WindowDelegate: |
267 virtual gfx::Size GetMinimumSize() const OVERRIDE; | 268 virtual gfx::Size GetMinimumSize() const OVERRIDE; |
268 virtual gfx::Size GetMaximumSize() const OVERRIDE; | 269 virtual gfx::Size GetMaximumSize() const OVERRIDE; |
269 virtual void OnBoundsChanged(const gfx::Rect& old_bounds, | 270 virtual void OnBoundsChanged(const gfx::Rect& old_bounds, |
270 const gfx::Rect& new_bounds) OVERRIDE; | 271 const gfx::Rect& new_bounds) OVERRIDE; |
271 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE; | 272 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE; |
272 virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE; | 273 virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE; |
273 virtual bool ShouldDescendIntoChildForEventHandling( | 274 virtual bool ShouldDescendIntoChildForEventHandling( |
274 aura::Window* child, | 275 aura::Window* child, |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
562 // etc. | 563 // etc. |
563 scoped_ptr<content::LegacyRenderWidgetHostHWND> | 564 scoped_ptr<content::LegacyRenderWidgetHostHWND> |
564 legacy_render_widget_host_HWND_; | 565 legacy_render_widget_host_HWND_; |
565 #endif | 566 #endif |
566 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 567 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
567 }; | 568 }; |
568 | 569 |
569 } // namespace content | 570 } // namespace content |
570 | 571 |
571 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 572 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |