| 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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 int32_t page_id, | 450 int32_t page_id, |
| 451 const base::string16& title, | 451 const base::string16& title, |
| 452 base::i18n::TextDirection title_direction) override; | 452 base::i18n::TextDirection title_direction) override; |
| 453 void UpdateEncoding(RenderFrameHost* render_frame_host, | 453 void UpdateEncoding(RenderFrameHost* render_frame_host, |
| 454 const std::string& encoding) override; | 454 const std::string& encoding) override; |
| 455 WebContents* GetAsWebContents() override; | 455 WebContents* GetAsWebContents() override; |
| 456 bool IsNeverVisible() override; | 456 bool IsNeverVisible() override; |
| 457 AccessibilityMode GetAccessibilityMode() const override; | 457 AccessibilityMode GetAccessibilityMode() const override; |
| 458 void AccessibilityEventReceived( | 458 void AccessibilityEventReceived( |
| 459 const std::vector<AXEventNotificationDetails>& details) override; | 459 const std::vector<AXEventNotificationDetails>& details) override; |
| 460 void AccessibilityLocationChangesReceived( |
| 461 const std::vector<AXLocationChangeNotificationDetails>& details) override; |
| 460 RenderFrameHost* GetGuestByInstanceID( | 462 RenderFrameHost* GetGuestByInstanceID( |
| 461 RenderFrameHost* render_frame_host, | 463 RenderFrameHost* render_frame_host, |
| 462 int browser_plugin_instance_id) override; | 464 int browser_plugin_instance_id) override; |
| 463 device::GeolocationServiceContext* GetGeolocationServiceContext() override; | 465 device::GeolocationServiceContext* GetGeolocationServiceContext() override; |
| 464 WakeLockServiceContext* GetWakeLockServiceContext() override; | 466 WakeLockServiceContext* GetWakeLockServiceContext() override; |
| 465 void EnterFullscreenMode(const GURL& origin) override; | 467 void EnterFullscreenMode(const GURL& origin) override; |
| 466 void ExitFullscreenMode(bool will_cause_resize) override; | 468 void ExitFullscreenMode(bool will_cause_resize) override; |
| 467 bool ShouldRouteMessageEvent( | 469 bool ShouldRouteMessageEvent( |
| 468 RenderFrameHost* target_rfh, | 470 RenderFrameHost* target_rfh, |
| 469 SiteInstance* source_site_instance) const override; | 471 SiteInstance* source_site_instance) const override; |
| (...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1447 // Adds/removes a callback called on creation of each new WebContents. | 1449 // Adds/removes a callback called on creation of each new WebContents. |
| 1448 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1450 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1449 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1451 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1450 | 1452 |
| 1451 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1453 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1452 }; | 1454 }; |
| 1453 | 1455 |
| 1454 } // namespace content | 1456 } // namespace content |
| 1455 | 1457 |
| 1456 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1458 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |