| 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_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); | 568 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); |
| 569 void OnRequestDesktopNotificationPermission(const GURL& origin, | 569 void OnRequestDesktopNotificationPermission(const GURL& origin, |
| 570 int callback_id); | 570 int callback_id); |
| 571 void OnShowDesktopNotification( | 571 void OnShowDesktopNotification( |
| 572 const ShowDesktopNotificationHostMsgParams& params); | 572 const ShowDesktopNotificationHostMsgParams& params); |
| 573 void OnCancelDesktopNotification(int notification_id); | 573 void OnCancelDesktopNotification(int notification_id); |
| 574 void OnRunFileChooser(const FileChooserParams& params); | 574 void OnRunFileChooser(const FileChooserParams& params); |
| 575 void OnDidAccessInitialDocument(); | 575 void OnDidAccessInitialDocument(); |
| 576 void OnDomOperationResponse(const std::string& json_string, | 576 void OnDomOperationResponse(const std::string& json_string, |
| 577 int automation_id); | 577 int automation_id); |
| 578 void OnGetWindowSnapshot(const int snapshot_id); | |
| 579 | 578 |
| 580 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 579 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 581 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); | 580 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); |
| 582 #endif | 581 #endif |
| 583 | 582 |
| 584 private: | 583 private: |
| 585 friend class TestRenderViewHost; | 584 friend class TestRenderViewHost; |
| 586 FRIEND_TEST_ALL_PREFIXES(RenderViewHostTest, BasicRenderFrameHost); | 585 FRIEND_TEST_ALL_PREFIXES(RenderViewHostTest, BasicRenderFrameHost); |
| 587 FRIEND_TEST_ALL_PREFIXES(RenderViewHostTest, RoutingIdSane); | 586 FRIEND_TEST_ALL_PREFIXES(RenderViewHostTest, RoutingIdSane); |
| 588 | 587 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 708 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 710 }; | 709 }; |
| 711 | 710 |
| 712 #if defined(COMPILER_MSVC) | 711 #if defined(COMPILER_MSVC) |
| 713 #pragma warning(pop) | 712 #pragma warning(pop) |
| 714 #endif | 713 #endif |
| 715 | 714 |
| 716 } // namespace content | 715 } // namespace content |
| 717 | 716 |
| 718 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 717 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |