| 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 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 625 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
| 626 void OnScriptEvalResponse(int id, const base::ListValue& result); | 626 void OnScriptEvalResponse(int id, const base::ListValue& result); |
| 627 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); | 627 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); |
| 628 void OnRequestDesktopNotificationPermission(const GURL& origin, | 628 void OnRequestDesktopNotificationPermission(const GURL& origin, |
| 629 int callback_id); | 629 int callback_id); |
| 630 void OnShowDesktopNotification( | 630 void OnShowDesktopNotification( |
| 631 const ShowDesktopNotificationHostMsgParams& params); | 631 const ShowDesktopNotificationHostMsgParams& params); |
| 632 void OnCancelDesktopNotification(int notification_id); | 632 void OnCancelDesktopNotification(int notification_id); |
| 633 void OnRunFileChooser(const FileChooserParams& params); | 633 void OnRunFileChooser(const FileChooserParams& params); |
| 634 void OnDidAccessInitialDocument(); | 634 void OnDidAccessInitialDocument(); |
| 635 void OnDomOperationResponse(const std::string& json_string, | |
| 636 int automation_id); | |
| 637 void OnFocusedNodeTouched(bool editable); | 635 void OnFocusedNodeTouched(bool editable); |
| 638 | 636 |
| 639 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 637 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 640 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); | 638 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); |
| 641 #endif | 639 #endif |
| 642 | 640 |
| 643 private: | 641 private: |
| 644 // TODO(nasko): Temporarily friend RenderFrameHostImpl, so we don't duplicate | 642 // TODO(nasko): Temporarily friend RenderFrameHostImpl, so we don't duplicate |
| 645 // utility functions and state needed in both classes, while we move frame | 643 // utility functions and state needed in both classes, while we move frame |
| 646 // specific code away from this class. | 644 // specific code away from this class. |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 775 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 778 }; | 776 }; |
| 779 | 777 |
| 780 #if defined(COMPILER_MSVC) | 778 #if defined(COMPILER_MSVC) |
| 781 #pragma warning(pop) | 779 #pragma warning(pop) |
| 782 #endif | 780 #endif |
| 783 | 781 |
| 784 } // namespace content | 782 } // namespace content |
| 785 | 783 |
| 786 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 784 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |