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 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
578 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); | 578 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); |
579 void OnRequestDesktopNotificationPermission(const GURL& origin, | 579 void OnRequestDesktopNotificationPermission(const GURL& origin, |
580 int callback_id); | 580 int callback_id); |
581 void OnShowDesktopNotification( | 581 void OnShowDesktopNotification( |
582 const ShowDesktopNotificationHostMsgParams& params); | 582 const ShowDesktopNotificationHostMsgParams& params); |
583 void OnCancelDesktopNotification(int notification_id); | 583 void OnCancelDesktopNotification(int notification_id); |
584 void OnRunFileChooser(const FileChooserParams& params); | 584 void OnRunFileChooser(const FileChooserParams& params); |
585 void OnDidAccessInitialDocument(); | 585 void OnDidAccessInitialDocument(); |
586 void OnDomOperationResponse(const std::string& json_string, | 586 void OnDomOperationResponse(const std::string& json_string, |
587 int automation_id); | 587 int automation_id); |
588 void OnFocusedNodeTouched(bool editable); | |
589 | 588 |
590 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 589 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
591 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); | 590 void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params); |
592 #endif | 591 #endif |
593 | 592 |
594 // TODO(nasko): Remove this accessor once RenderFrameHost moves into the frame | 593 // TODO(nasko): Remove this accessor once RenderFrameHost moves into the frame |
595 // tree. | 594 // tree. |
596 RenderFrameHostImpl* main_render_frame_host() const { | 595 RenderFrameHostImpl* main_render_frame_host() const { |
597 return main_render_frame_host_.get(); | 596 return main_render_frame_host_.get(); |
598 } | 597 } |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
721 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 720 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
722 }; | 721 }; |
723 | 722 |
724 #if defined(COMPILER_MSVC) | 723 #if defined(COMPILER_MSVC) |
725 #pragma warning(pop) | 724 #pragma warning(pop) |
726 #endif | 725 #endif |
727 | 726 |
728 } // namespace content | 727 } // namespace content |
729 | 728 |
730 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 729 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |