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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 bool is_playing); | 564 bool is_playing); |
565 void OnRequestDesktopNotificationPermission(const GURL& origin, | 565 void OnRequestDesktopNotificationPermission(const GURL& origin, |
566 int callback_id); | 566 int callback_id); |
567 void OnShowDesktopNotification( | 567 void OnShowDesktopNotification( |
568 const ShowDesktopNotificationHostMsgParams& params); | 568 const ShowDesktopNotificationHostMsgParams& params); |
569 void OnCancelDesktopNotification(int notification_id); | 569 void OnCancelDesktopNotification(int notification_id); |
570 void OnRunFileChooser(const FileChooserParams& params); | 570 void OnRunFileChooser(const FileChooserParams& params); |
571 void OnDomOperationResponse(const std::string& json_string, | 571 void OnDomOperationResponse(const std::string& json_string, |
572 int automation_id); | 572 int automation_id); |
573 void OnFrameTreeUpdated(const std::string& frame_tree); | 573 void OnFrameTreeUpdated(const std::string& frame_tree); |
| 574 void OnGetWindowSnapshot(const int snapshot_id); |
574 | 575 |
575 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 576 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
576 void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params); | 577 void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params); |
577 #endif | 578 #endif |
578 | 579 |
579 #if defined(OS_ANDROID) | 580 #if defined(OS_ANDROID) |
580 void OnMsgDidChangeBodyBackgroundColor(SkColor color); | 581 void OnMsgDidChangeBodyBackgroundColor(SkColor color); |
581 void OnStartContentIntent(const GURL& content_url); | 582 void OnStartContentIntent(const GURL& content_url); |
582 #endif | 583 #endif |
583 | 584 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
697 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 698 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
698 }; | 699 }; |
699 | 700 |
700 #if defined(COMPILER_MSVC) | 701 #if defined(COMPILER_MSVC) |
701 #pragma warning(pop) | 702 #pragma warning(pop) |
702 #endif | 703 #endif |
703 | 704 |
704 } // namespace content | 705 } // namespace content |
705 | 706 |
706 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 707 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |