OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_HOST_NAVIGATION_CONTROLLER_DELEGATE_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_DELEGATE_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_DELEGATE_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_DELEGATE_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 #include "content/public/browser/invalidate_type.h" | 11 #include "content/public/browser/invalidate_type.h" |
10 #include "content/public/browser/navigation_controller.h" | 12 #include "content/public/browser/navigation_controller.h" |
11 #include "content/public/browser/navigation_details.h" | 13 #include "content/public/browser/navigation_details.h" |
12 | 14 |
13 namespace content { | 15 namespace content { |
14 | 16 |
15 struct LoadCommittedDetails; | 17 struct LoadCommittedDetails; |
16 struct LoadNotificationDetails; | 18 struct LoadNotificationDetails; |
17 struct NativeWebKeyboardEvent; | 19 struct NativeWebKeyboardEvent; |
(...skipping 13 matching lines...) Expand all Loading... |
31 class NavigationControllerDelegate { | 33 class NavigationControllerDelegate { |
32 public: | 34 public: |
33 virtual ~NavigationControllerDelegate() {} | 35 virtual ~NavigationControllerDelegate() {} |
34 | 36 |
35 // Duplicates of WebContents methods. | 37 // Duplicates of WebContents methods. |
36 virtual RenderViewHost* GetRenderViewHost() const = 0; | 38 virtual RenderViewHost* GetRenderViewHost() const = 0; |
37 virtual InterstitialPage* GetInterstitialPage() const = 0; | 39 virtual InterstitialPage* GetInterstitialPage() const = 0; |
38 virtual const std::string& GetContentsMimeType() const = 0; | 40 virtual const std::string& GetContentsMimeType() const = 0; |
39 virtual void NotifyNavigationStateChanged(InvalidateTypes changed_flags) = 0; | 41 virtual void NotifyNavigationStateChanged(InvalidateTypes changed_flags) = 0; |
40 virtual void Stop() = 0; | 42 virtual void Stop() = 0; |
41 virtual int32 GetMaxPageID() = 0; | 43 virtual int32_t GetMaxPageID() = 0; |
42 virtual int32 GetMaxPageIDForSiteInstance(SiteInstance* site_instance) = 0; | 44 virtual int32_t GetMaxPageIDForSiteInstance(SiteInstance* site_instance) = 0; |
43 virtual bool IsLoading() const = 0; | 45 virtual bool IsLoading() const = 0; |
44 virtual bool IsBeingDestroyed() const = 0; | 46 virtual bool IsBeingDestroyed() const = 0; |
45 virtual bool CanOverscrollContent() const = 0; | 47 virtual bool CanOverscrollContent() const = 0; |
46 | 48 |
47 // Methods from WebContentsImpl that NavigationControllerImpl needs to | 49 // Methods from WebContentsImpl that NavigationControllerImpl needs to |
48 // call. | 50 // call. |
49 virtual FrameTree* GetFrameTree() = 0; | 51 virtual FrameTree* GetFrameTree() = 0; |
50 virtual void NotifyBeforeFormRepostWarningShow() = 0; | 52 virtual void NotifyBeforeFormRepostWarningShow() = 0; |
51 virtual void NotifyNavigationEntryCommitted( | 53 virtual void NotifyNavigationEntryCommitted( |
52 const LoadCommittedDetails& load_details) = 0; | 54 const LoadCommittedDetails& load_details) = 0; |
53 virtual void SetHistoryOffsetAndLength(int history_offset, | 55 virtual void SetHistoryOffsetAndLength(int history_offset, |
54 int history_length) = 0; | 56 int history_length) = 0; |
55 virtual void CopyMaxPageIDsFrom(WebContents* web_contents) = 0; | 57 virtual void CopyMaxPageIDsFrom(WebContents* web_contents) = 0; |
56 virtual void UpdateMaxPageID(int32 page_id) = 0; | 58 virtual void UpdateMaxPageID(int32_t page_id) = 0; |
57 virtual void UpdateMaxPageIDForSiteInstance(SiteInstance* site_instance, | 59 virtual void UpdateMaxPageIDForSiteInstance(SiteInstance* site_instance, |
58 int32 page_id) = 0; | 60 int32_t page_id) = 0; |
59 virtual void ActivateAndShowRepostFormWarningDialog() = 0; | 61 virtual void ActivateAndShowRepostFormWarningDialog() = 0; |
60 virtual bool HasAccessedInitialDocument() = 0; | 62 virtual bool HasAccessedInitialDocument() = 0; |
61 | 63 |
62 // This method is needed, since we are no longer guaranteed that the | 64 // This method is needed, since we are no longer guaranteed that the |
63 // embedder for NavigationController will be a WebContents object. | 65 // embedder for NavigationController will be a WebContents object. |
64 virtual WebContents* GetWebContents() = 0; | 66 virtual WebContents* GetWebContents() = 0; |
65 | 67 |
66 // Methods needed by InterstitialPageImpl. | 68 // Methods needed by InterstitialPageImpl. |
67 virtual bool IsHidden() = 0; | 69 virtual bool IsHidden() = 0; |
68 virtual void RenderFrameForInterstitialPageCreated( | 70 virtual void RenderFrameForInterstitialPageCreated( |
69 RenderFrameHost* render_frame_host) = 0; | 71 RenderFrameHost* render_frame_host) = 0; |
70 virtual void AttachInterstitialPage( | 72 virtual void AttachInterstitialPage( |
71 InterstitialPageImpl* interstitial_page) = 0; | 73 InterstitialPageImpl* interstitial_page) = 0; |
72 virtual void DetachInterstitialPage() = 0; | 74 virtual void DetachInterstitialPage() = 0; |
73 virtual void SetIsLoading(bool is_loading, | 75 virtual void SetIsLoading(bool is_loading, |
74 bool to_different_document, | 76 bool to_different_document, |
75 LoadNotificationDetails* details) = 0; | 77 LoadNotificationDetails* details) = 0; |
76 }; | 78 }; |
77 | 79 |
78 } // namespace content | 80 } // namespace content |
79 | 81 |
80 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_DELEGATE_H_ | 82 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_DELEGATE_H_ |
OLD | NEW |