| 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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 std::string GetDefaultMediaDeviceID(MediaStreamType type) override; | 564 std::string GetDefaultMediaDeviceID(MediaStreamType type) override; |
| 565 SessionStorageNamespace* GetSessionStorageNamespace( | 565 SessionStorageNamespace* GetSessionStorageNamespace( |
| 566 SiteInstance* instance) override; | 566 SiteInstance* instance) override; |
| 567 SessionStorageNamespaceMap GetSessionStorageNamespaceMap() override; | 567 SessionStorageNamespaceMap GetSessionStorageNamespaceMap() override; |
| 568 double GetPendingPageZoomLevel() override; | 568 double GetPendingPageZoomLevel() override; |
| 569 FrameTree* GetFrameTree() override; | 569 FrameTree* GetFrameTree() override; |
| 570 void SetIsVirtualKeyboardRequested(bool requested) override; | 570 void SetIsVirtualKeyboardRequested(bool requested) override; |
| 571 bool IsVirtualKeyboardRequested() override; | 571 bool IsVirtualKeyboardRequested() override; |
| 572 bool IsOverridingUserAgent() override; | 572 bool IsOverridingUserAgent() override; |
| 573 bool IsJavaScriptDialogShowing() const override; | 573 bool IsJavaScriptDialogShowing() const override; |
| 574 bool ShouldIgnoreUnresponsiveRenderer() override; |
| 574 bool HideDownloadUI() const override; | 575 bool HideDownloadUI() const override; |
| 575 bool HasPersistentVideo() const override; | 576 bool HasPersistentVideo() const override; |
| 576 | 577 |
| 577 // NavigatorDelegate --------------------------------------------------------- | 578 // NavigatorDelegate --------------------------------------------------------- |
| 578 | 579 |
| 579 void DidStartNavigation(NavigationHandle* navigation_handle) override; | 580 void DidStartNavigation(NavigationHandle* navigation_handle) override; |
| 580 void DidRedirectNavigation(NavigationHandle* navigation_handle) override; | 581 void DidRedirectNavigation(NavigationHandle* navigation_handle) override; |
| 581 void ReadyToCommitNavigation(NavigationHandle* navigation_handle) override; | 582 void ReadyToCommitNavigation(NavigationHandle* navigation_handle) override; |
| 582 void DidFinishNavigation(NavigationHandle* navigation_handle) override; | 583 void DidFinishNavigation(NavigationHandle* navigation_handle) override; |
| 583 void DidFailLoadWithError(RenderFrameHostImpl* render_frame_host, | 584 void DidFailLoadWithError(RenderFrameHostImpl* render_frame_host, |
| (...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1536 // Adds/removes a callback called on creation of each new WebContents. | 1537 // Adds/removes a callback called on creation of each new WebContents. |
| 1537 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1538 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1538 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1539 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1539 | 1540 |
| 1540 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1541 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1541 }; | 1542 }; |
| 1542 | 1543 |
| 1543 } // namespace content | 1544 } // namespace content |
| 1544 | 1545 |
| 1545 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1546 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |