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 <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 class DownloadItem; | 49 class DownloadItem; |
50 class GeolocationDispatcherHost; | 50 class GeolocationDispatcherHost; |
51 class InterstitialPageImpl; | 51 class InterstitialPageImpl; |
52 class JavaScriptDialogManager; | 52 class JavaScriptDialogManager; |
53 class PowerSaveBlocker; | 53 class PowerSaveBlocker; |
54 class RenderViewHost; | 54 class RenderViewHost; |
55 class RenderViewHostDelegateView; | 55 class RenderViewHostDelegateView; |
56 class RenderViewHostImpl; | 56 class RenderViewHostImpl; |
57 class RenderWidgetHostImpl; | 57 class RenderWidgetHostImpl; |
58 class SavePackage; | 58 class SavePackage; |
59 class SessionStorageNamespaceImpl; | |
60 class SiteInstance; | 59 class SiteInstance; |
61 class TestWebContents; | 60 class TestWebContents; |
62 class WebContentsDelegate; | 61 class WebContentsDelegate; |
63 class WebContentsImpl; | 62 class WebContentsImpl; |
64 class WebContentsObserver; | 63 class WebContentsObserver; |
65 class WebContentsView; | 64 class WebContentsView; |
66 class WebContentsViewDelegate; | 65 class WebContentsViewDelegate; |
67 struct AXEventNotificationDetails; | 66 struct AXEventNotificationDetails; |
68 struct ColorSuggestion; | 67 struct ColorSuggestion; |
69 struct FaviconURL; | 68 struct FaviconURL; |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 const gfx::Rect& initial_pos, | 429 const gfx::Rect& initial_pos, |
431 bool user_gesture) OVERRIDE; | 430 bool user_gesture) OVERRIDE; |
432 virtual void ShowCreatedWidget(int route_id, | 431 virtual void ShowCreatedWidget(int route_id, |
433 const gfx::Rect& initial_pos) OVERRIDE; | 432 const gfx::Rect& initial_pos) OVERRIDE; |
434 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE; | 433 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE; |
435 virtual void RequestMediaAccessPermission( | 434 virtual void RequestMediaAccessPermission( |
436 const MediaStreamRequest& request, | 435 const MediaStreamRequest& request, |
437 const MediaResponseCallback& callback) OVERRIDE; | 436 const MediaResponseCallback& callback) OVERRIDE; |
438 virtual SessionStorageNamespace* GetSessionStorageNamespace( | 437 virtual SessionStorageNamespace* GetSessionStorageNamespace( |
439 SiteInstance* instance) OVERRIDE; | 438 SiteInstance* instance) OVERRIDE; |
| 439 virtual SessionStorageNamespaceMap GetSessionStorageNamespaceMap() OVERRIDE; |
440 virtual FrameTree* GetFrameTree() OVERRIDE; | 440 virtual FrameTree* GetFrameTree() OVERRIDE; |
441 virtual void AccessibilityEventReceived( | 441 virtual void AccessibilityEventReceived( |
442 const std::vector<AXEventNotificationDetails>& details) OVERRIDE; | 442 const std::vector<AXEventNotificationDetails>& details) OVERRIDE; |
443 | 443 |
444 // NavigatorDelegate --------------------------------------------------------- | 444 // NavigatorDelegate --------------------------------------------------------- |
445 | 445 |
446 virtual void DidStartProvisionalLoad( | 446 virtual void DidStartProvisionalLoad( |
447 RenderFrameHostImpl* render_frame_host, | 447 RenderFrameHostImpl* render_frame_host, |
448 int parent_routing_id, | 448 int parent_routing_id, |
449 const GURL& validated_url, | 449 const GURL& validated_url, |
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1126 bool last_dialog_suppressed_; | 1126 bool last_dialog_suppressed_; |
1127 | 1127 |
1128 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; | 1128 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; |
1129 | 1129 |
1130 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1130 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1131 }; | 1131 }; |
1132 | 1132 |
1133 } // namespace content | 1133 } // namespace content |
1134 | 1134 |
1135 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1135 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |