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 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
600 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); | 600 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); |
601 void OnRequestDesktopNotificationPermission(const GURL& origin, | 601 void OnRequestDesktopNotificationPermission(const GURL& origin, |
602 int callback_id); | 602 int callback_id); |
603 void OnShowDesktopNotification( | 603 void OnShowDesktopNotification( |
604 const ShowDesktopNotificationHostMsgParams& params); | 604 const ShowDesktopNotificationHostMsgParams& params); |
605 void OnCancelDesktopNotification(int notification_id); | 605 void OnCancelDesktopNotification(int notification_id); |
606 void OnRunFileChooser(const FileChooserParams& params); | 606 void OnRunFileChooser(const FileChooserParams& params); |
607 void OnDidAccessInitialDocument(); | 607 void OnDidAccessInitialDocument(); |
608 void OnDomOperationResponse(const std::string& json_string, | 608 void OnDomOperationResponse(const std::string& json_string, |
609 int automation_id); | 609 int automation_id); |
| 610 void OnFocusedNodeTouched(bool editable); |
610 | 611 |
611 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 612 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
612 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); | 613 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); |
613 #endif | 614 #endif |
614 | 615 |
615 // TODO(nasko): Remove this accessor once RenderFrameHost moves into the frame | 616 // TODO(nasko): Remove this accessor once RenderFrameHost moves into the frame |
616 // tree. | 617 // tree. |
617 RenderFrameHostImpl* main_render_frame_host() const { | 618 RenderFrameHostImpl* main_render_frame_host() const { |
618 return main_render_frame_host_.get(); | 619 return main_render_frame_host_.get(); |
619 } | 620 } |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
742 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 743 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
743 }; | 744 }; |
744 | 745 |
745 #if defined(COMPILER_MSVC) | 746 #if defined(COMPILER_MSVC) |
746 #pragma warning(pop) | 747 #pragma warning(pop) |
747 #endif | 748 #endif |
748 | 749 |
749 } // namespace content | 750 } // namespace content |
750 | 751 |
751 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 752 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |