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_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <functional> | 10 #include <functional> |
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
612 void ReplicatePageFocus(bool is_focused) override; | 612 void ReplicatePageFocus(bool is_focused) override; |
613 RenderWidgetHostImpl* GetFocusedRenderWidgetHost( | 613 RenderWidgetHostImpl* GetFocusedRenderWidgetHost( |
614 RenderWidgetHostImpl* receiving_widget) override; | 614 RenderWidgetHostImpl* receiving_widget) override; |
615 void RendererUnresponsive(RenderWidgetHostImpl* render_widget_host) override; | 615 void RendererUnresponsive(RenderWidgetHostImpl* render_widget_host) override; |
616 void RendererResponsive(RenderWidgetHostImpl* render_widget_host) override; | 616 void RendererResponsive(RenderWidgetHostImpl* render_widget_host) override; |
617 void RequestToLockMouse(RenderWidgetHostImpl* render_widget_host, | 617 void RequestToLockMouse(RenderWidgetHostImpl* render_widget_host, |
618 bool user_gesture, | 618 bool user_gesture, |
619 bool last_unlocked_by_target) override; | 619 bool last_unlocked_by_target) override; |
620 gfx::Rect GetRootWindowResizerRect( | 620 gfx::Rect GetRootWindowResizerRect( |
621 RenderWidgetHostImpl* render_widget_host) const override; | 621 RenderWidgetHostImpl* render_widget_host) const override; |
622 bool IsFullscreenForCurrentTab( | 622 bool IsFullscreenForCurrentTab() const override; |
623 RenderWidgetHostImpl* render_widget_host) const override; | |
624 blink::WebDisplayMode GetDisplayMode( | 623 blink::WebDisplayMode GetDisplayMode( |
625 RenderWidgetHostImpl* render_widget_host) const override; | 624 RenderWidgetHostImpl* render_widget_host) const override; |
626 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; | 625 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; |
627 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 626 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
628 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, | 627 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, |
629 const std::vector<uint8_t>& proto) override; | 628 const std::vector<uint8_t>& proto) override; |
630 void OnRenderFrameProxyVisibilityChanged(bool visible) override; | 629 void OnRenderFrameProxyVisibilityChanged(bool visible) override; |
631 void SendScreenRects() override; | 630 void SendScreenRects() override; |
632 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override; | 631 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override; |
633 | 632 |
(...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1402 // Adds/removes a callback called on creation of each new WebContents. | 1401 // Adds/removes a callback called on creation of each new WebContents. |
1403 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1402 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
1404 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1403 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
1405 | 1404 |
1406 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1405 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
1407 }; | 1406 }; |
1408 | 1407 |
1409 } // namespace content | 1408 } // namespace content |
1410 | 1409 |
1411 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1410 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |