| 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 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 bool is_main_frame) override; | 691 bool is_main_frame) override; |
| 692 void NotifyMainFrameSwappedFromRenderManager( | 692 void NotifyMainFrameSwappedFromRenderManager( |
| 693 RenderViewHost* old_host, | 693 RenderViewHost* old_host, |
| 694 RenderViewHost* new_host) override; | 694 RenderViewHost* new_host) override; |
| 695 NavigationControllerImpl& GetControllerForRenderManager() override; | 695 NavigationControllerImpl& GetControllerForRenderManager() override; |
| 696 NavigationEntry* GetLastCommittedNavigationEntryForRenderManager() override; | 696 NavigationEntry* GetLastCommittedNavigationEntryForRenderManager() override; |
| 697 bool FocusLocationBarByDefault() override; | 697 bool FocusLocationBarByDefault() override; |
| 698 void SetFocusToLocationBar(bool select_all) override; | 698 void SetFocusToLocationBar(bool select_all) override; |
| 699 bool IsHidden() override; | 699 bool IsHidden() override; |
| 700 int GetOuterDelegateFrameTreeNodeId() override; | 700 int GetOuterDelegateFrameTreeNodeId() override; |
| 701 RenderWidgetHostImpl* GetFullscreenRenderWidgetHost() const override; |
| 701 | 702 |
| 702 // NotificationObserver ------------------------------------------------------ | 703 // NotificationObserver ------------------------------------------------------ |
| 703 | 704 |
| 704 void Observe(int type, | 705 void Observe(int type, |
| 705 const NotificationSource& source, | 706 const NotificationSource& source, |
| 706 const NotificationDetails& details) override; | 707 const NotificationDetails& details) override; |
| 707 | 708 |
| 708 // NavigationControllerDelegate ---------------------------------------------- | 709 // NavigationControllerDelegate ---------------------------------------------- |
| 709 | 710 |
| 710 WebContents* GetWebContents() override; | 711 WebContents* GetWebContents() override; |
| (...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1452 // Adds/removes a callback called on creation of each new WebContents. | 1453 // Adds/removes a callback called on creation of each new WebContents. |
| 1453 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1454 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1454 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1455 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1455 | 1456 |
| 1456 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1457 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1457 }; | 1458 }; |
| 1458 | 1459 |
| 1459 } // namespace content | 1460 } // namespace content |
| 1460 | 1461 |
| 1461 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1462 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |