| 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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, | 366 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, |
| 367 UpdateCursorIfOverSelf); | 367 UpdateCursorIfOverSelf); |
| 368 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, | 368 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, |
| 369 VisibleViewportTest); | 369 VisibleViewportTest); |
| 370 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, | 370 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, |
| 371 OverscrollResetsOnBlur); | 371 OverscrollResetsOnBlur); |
| 372 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, | 372 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, |
| 373 FinishCompositionByMouse); | 373 FinishCompositionByMouse); |
| 374 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, | 374 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, |
| 375 ForwardsBeginFrameAcks); | 375 ForwardsBeginFrameAcks); |
| 376 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, |
| 377 VirtualKeyboardFocusEnsureCaretInRect); |
| 376 FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, | 378 FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, |
| 377 WebContentsViewReparent); | 379 WebContentsViewReparent); |
| 378 | 380 |
| 379 class WindowObserver; | 381 class WindowObserver; |
| 380 friend class WindowObserver; | 382 friend class WindowObserver; |
| 381 | 383 |
| 382 class WindowAncestorObserver; | 384 class WindowAncestorObserver; |
| 383 friend class WindowAncestorObserver; | 385 friend class WindowAncestorObserver; |
| 384 | 386 |
| 385 void CreateAuraWindow(ui::wm::WindowType type); | 387 void CreateAuraWindow(ui::wm::WindowType type); |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 cc::FrameSinkId frame_sink_id_; | 595 cc::FrameSinkId frame_sink_id_; |
| 594 | 596 |
| 595 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 597 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 596 | 598 |
| 597 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 599 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 598 }; | 600 }; |
| 599 | 601 |
| 600 } // namespace content | 602 } // namespace content |
| 601 | 603 |
| 602 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 604 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |