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