| 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 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 bool is_main_frame) override; | 704 bool is_main_frame) override; |
| 705 void NotifyMainFrameSwappedFromRenderManager( | 705 void NotifyMainFrameSwappedFromRenderManager( |
| 706 RenderViewHost* old_host, | 706 RenderViewHost* old_host, |
| 707 RenderViewHost* new_host) override; | 707 RenderViewHost* new_host) override; |
| 708 NavigationControllerImpl& GetControllerForRenderManager() override; | 708 NavigationControllerImpl& GetControllerForRenderManager() override; |
| 709 NavigationEntry* GetLastCommittedNavigationEntryForRenderManager() override; | 709 NavigationEntry* GetLastCommittedNavigationEntryForRenderManager() override; |
| 710 bool FocusLocationBarByDefault() override; | 710 bool FocusLocationBarByDefault() override; |
| 711 void SetFocusToLocationBar(bool select_all) override; | 711 void SetFocusToLocationBar(bool select_all) override; |
| 712 bool IsHidden() override; | 712 bool IsHidden() override; |
| 713 int GetOuterDelegateFrameTreeNodeId() override; | 713 int GetOuterDelegateFrameTreeNodeId() override; |
| 714 RenderWidgetHostImpl* GetFullscreenRenderWidgetHost() const override; |
| 714 | 715 |
| 715 // NotificationObserver ------------------------------------------------------ | 716 // NotificationObserver ------------------------------------------------------ |
| 716 | 717 |
| 717 void Observe(int type, | 718 void Observe(int type, |
| 718 const NotificationSource& source, | 719 const NotificationSource& source, |
| 719 const NotificationDetails& details) override; | 720 const NotificationDetails& details) override; |
| 720 | 721 |
| 721 // NavigationControllerDelegate ---------------------------------------------- | 722 // NavigationControllerDelegate ---------------------------------------------- |
| 722 | 723 |
| 723 WebContents* GetWebContents() override; | 724 WebContents* GetWebContents() override; |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1485 // Adds/removes a callback called on creation of each new WebContents. | 1486 // Adds/removes a callback called on creation of each new WebContents. |
| 1486 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1487 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1487 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1488 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1488 | 1489 |
| 1489 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1490 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1490 }; | 1491 }; |
| 1491 | 1492 |
| 1492 } // namespace content | 1493 } // namespace content |
| 1493 | 1494 |
| 1494 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1495 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |