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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 const gfx::Rect& initial_pos, | 430 const gfx::Rect& initial_pos, |
431 bool user_gesture) OVERRIDE; | 431 bool user_gesture) OVERRIDE; |
432 virtual void ShowCreatedWidget(int route_id, | 432 virtual void ShowCreatedWidget(int route_id, |
433 const gfx::Rect& initial_pos) OVERRIDE; | 433 const gfx::Rect& initial_pos) OVERRIDE; |
434 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE; | 434 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE; |
435 virtual void RequestMediaAccessPermission( | 435 virtual void RequestMediaAccessPermission( |
436 const MediaStreamRequest& request, | 436 const MediaStreamRequest& request, |
437 const MediaResponseCallback& callback) OVERRIDE; | 437 const MediaResponseCallback& callback) OVERRIDE; |
438 virtual SessionStorageNamespace* GetSessionStorageNamespace( | 438 virtual SessionStorageNamespace* GetSessionStorageNamespace( |
439 SiteInstance* instance) OVERRIDE; | 439 SiteInstance* instance) OVERRIDE; |
| 440 virtual SessionStorageNamespaceMap GetSessionStorageNamespaceMap() OVERRIDE; |
440 virtual FrameTree* GetFrameTree() OVERRIDE; | 441 virtual FrameTree* GetFrameTree() OVERRIDE; |
441 virtual void AccessibilityEventReceived( | 442 virtual void AccessibilityEventReceived( |
442 const std::vector<AXEventNotificationDetails>& details) OVERRIDE; | 443 const std::vector<AXEventNotificationDetails>& details) OVERRIDE; |
443 | 444 |
444 // NavigatorDelegate --------------------------------------------------------- | 445 // NavigatorDelegate --------------------------------------------------------- |
445 | 446 |
446 virtual void DidStartProvisionalLoad( | 447 virtual void DidStartProvisionalLoad( |
447 RenderFrameHostImpl* render_frame_host, | 448 RenderFrameHostImpl* render_frame_host, |
448 int parent_routing_id, | 449 int parent_routing_id, |
449 const GURL& validated_url, | 450 const GURL& validated_url, |
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1126 bool last_dialog_suppressed_; | 1127 bool last_dialog_suppressed_; |
1127 | 1128 |
1128 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; | 1129 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; |
1129 | 1130 |
1130 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1131 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1131 }; | 1132 }; |
1132 | 1133 |
1133 } // namespace content | 1134 } // namespace content |
1134 | 1135 |
1135 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1136 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |