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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
560 bool is_playing); | 560 bool is_playing); |
561 void OnRequestDesktopNotificationPermission(const GURL& origin, | 561 void OnRequestDesktopNotificationPermission(const GURL& origin, |
562 int callback_id); | 562 int callback_id); |
563 void OnShowDesktopNotification( | 563 void OnShowDesktopNotification( |
564 const ShowDesktopNotificationHostMsgParams& params); | 564 const ShowDesktopNotificationHostMsgParams& params); |
565 void OnCancelDesktopNotification(int notification_id); | 565 void OnCancelDesktopNotification(int notification_id); |
566 void OnRunFileChooser(const FileChooserParams& params); | 566 void OnRunFileChooser(const FileChooserParams& params); |
567 void OnDomOperationResponse(const std::string& json_string, | 567 void OnDomOperationResponse(const std::string& json_string, |
568 int automation_id); | 568 int automation_id); |
569 void OnFrameTreeUpdated(const std::string& frame_tree); | 569 void OnFrameTreeUpdated(const std::string& frame_tree); |
570 void OnGetWindowSnapshot(const int id); | |
Ken Russell (switch to Gerrit)
2012/11/30 22:32:54
id -> snapshot_id
| |
570 | 571 |
571 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 572 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
572 void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params); | 573 void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params); |
573 #endif | 574 #endif |
574 | 575 |
575 #if defined(OS_ANDROID) | 576 #if defined(OS_ANDROID) |
576 void OnMsgDidChangeBodyBackgroundColor(SkColor color); | 577 void OnMsgDidChangeBodyBackgroundColor(SkColor color); |
577 void OnStartContentIntent(const GURL& content_url); | 578 void OnStartContentIntent(const GURL& content_url); |
578 #endif | 579 #endif |
579 | 580 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
693 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 694 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
694 }; | 695 }; |
695 | 696 |
696 #if defined(COMPILER_MSVC) | 697 #if defined(COMPILER_MSVC) |
697 #pragma warning(pop) | 698 #pragma warning(pop) |
698 #endif | 699 #endif |
699 | 700 |
700 } // namespace content | 701 } // namespace content |
701 | 702 |
702 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 703 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |