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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
567 bool is_playing); | 567 bool is_playing); |
568 void OnRequestDesktopNotificationPermission(const GURL& origin, | 568 void OnRequestDesktopNotificationPermission(const GURL& origin, |
569 int callback_id); | 569 int callback_id); |
570 void OnShowDesktopNotification( | 570 void OnShowDesktopNotification( |
571 const ShowDesktopNotificationHostMsgParams& params); | 571 const ShowDesktopNotificationHostMsgParams& params); |
572 void OnCancelDesktopNotification(int notification_id); | 572 void OnCancelDesktopNotification(int notification_id); |
573 void OnRunFileChooser(const FileChooserParams& params); | 573 void OnRunFileChooser(const FileChooserParams& params); |
574 void OnDomOperationResponse(const std::string& json_string, | 574 void OnDomOperationResponse(const std::string& json_string, |
575 int automation_id); | 575 int automation_id); |
576 void OnFrameTreeUpdated(const std::string& frame_tree); | 576 void OnFrameTreeUpdated(const std::string& frame_tree); |
577 void OnMsgGetWindowSnapshot(const int id); | |
jam
2012/11/09 02:21:29
just OnGetWindowSnapshot is good enough (I realize
| |
577 | 578 |
578 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 579 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
579 void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params); | 580 void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params); |
580 #endif | 581 #endif |
581 | 582 |
582 #if defined(OS_ANDROID) | 583 #if defined(OS_ANDROID) |
583 void OnMsgDidChangeBodyBackgroundColor(SkColor color); | 584 void OnMsgDidChangeBodyBackgroundColor(SkColor color); |
584 void OnStartContentIntent(const GURL& content_url); | 585 void OnStartContentIntent(const GURL& content_url); |
585 #endif | 586 #endif |
586 | 587 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
700 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 701 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
701 }; | 702 }; |
702 | 703 |
703 #if defined(COMPILER_MSVC) | 704 #if defined(COMPILER_MSVC) |
704 #pragma warning(pop) | 705 #pragma warning(pop) |
705 #endif | 706 #endif |
706 | 707 |
707 } // namespace content | 708 } // namespace content |
708 | 709 |
709 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 710 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |