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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
620 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 620 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
621 void OnScriptEvalResponse(int id, const base::ListValue& result); | 621 void OnScriptEvalResponse(int id, const base::ListValue& result); |
622 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); | 622 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); |
623 void OnRequestDesktopNotificationPermission(const GURL& origin, | 623 void OnRequestDesktopNotificationPermission(const GURL& origin, |
624 int callback_id); | 624 int callback_id); |
625 void OnShowDesktopNotification( | 625 void OnShowDesktopNotification( |
626 const ShowDesktopNotificationHostMsgParams& params); | 626 const ShowDesktopNotificationHostMsgParams& params); |
627 void OnCancelDesktopNotification(int notification_id); | 627 void OnCancelDesktopNotification(int notification_id); |
628 void OnRunFileChooser(const FileChooserParams& params); | 628 void OnRunFileChooser(const FileChooserParams& params); |
629 void OnDidAccessInitialDocument(); | 629 void OnDidAccessInitialDocument(); |
630 void OnDomOperationResponse(const std::string& json_string, | |
631 int automation_id); | |
632 void OnFocusedNodeTouched(bool editable); | 630 void OnFocusedNodeTouched(bool editable); |
633 | 631 |
634 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 632 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
635 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); | 633 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); |
636 #endif | 634 #endif |
637 | 635 |
638 private: | 636 private: |
639 // TODO(nasko): Temporarily friend RenderFrameHostImpl, so we don't duplicate | 637 // TODO(nasko): Temporarily friend RenderFrameHostImpl, so we don't duplicate |
640 // utility functions and state needed in both classes, while we move frame | 638 // utility functions and state needed in both classes, while we move frame |
641 // specific code away from this class. | 639 // specific code away from this class. |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
764 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 762 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
765 }; | 763 }; |
766 | 764 |
767 #if defined(COMPILER_MSVC) | 765 #if defined(COMPILER_MSVC) |
768 #pragma warning(pop) | 766 #pragma warning(pop) |
769 #endif | 767 #endif |
770 | 768 |
771 } // namespace content | 769 } // namespace content |
772 | 770 |
773 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 771 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |