| 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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, | 378 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, |
| 379 VisibleViewportTest); | 379 VisibleViewportTest); |
| 380 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, | 380 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, |
| 381 OverscrollResetsOnBlur); | 381 OverscrollResetsOnBlur); |
| 382 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, | 382 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, |
| 383 FinishCompositionByMouse); | 383 FinishCompositionByMouse); |
| 384 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, | 384 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, |
| 385 ForwardsBeginFrameAcks); | 385 ForwardsBeginFrameAcks); |
| 386 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, | 386 FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewAuraTest, |
| 387 VirtualKeyboardFocusEnsureCaretInRect); | 387 VirtualKeyboardFocusEnsureCaretInRect); |
| 388 FRIEND_TEST_ALL_PREFIXES(SitePerProcessBrowserTest, PopupMenuTest); |
| 388 FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, | 389 FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, |
| 389 WebContentsViewReparent); | 390 WebContentsViewReparent); |
| 390 | 391 |
| 391 class WindowObserver; | 392 class WindowObserver; |
| 392 friend class WindowObserver; | 393 friend class WindowObserver; |
| 393 | 394 |
| 394 class WindowAncestorObserver; | 395 class WindowAncestorObserver; |
| 395 friend class WindowAncestorObserver; | 396 friend class WindowAncestorObserver; |
| 396 | 397 |
| 397 void CreateAuraWindow(aura::client::WindowType type); | 398 void CreateAuraWindow(aura::client::WindowType type); |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 cc::LocalSurfaceId local_surface_id_; | 611 cc::LocalSurfaceId local_surface_id_; |
| 611 | 612 |
| 612 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 613 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 613 | 614 |
| 614 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 615 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 615 }; | 616 }; |
| 616 | 617 |
| 617 } // namespace content | 618 } // namespace content |
| 618 | 619 |
| 619 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 620 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |