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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 void OnTargetDropACK(); | 552 void OnTargetDropACK(); |
553 void OnTakeFocus(bool reverse); | 553 void OnTakeFocus(bool reverse); |
554 void OnFocusedNodeChanged(bool is_editable_node); | 554 void OnFocusedNodeChanged(bool is_editable_node); |
555 void OnUpdateInspectorSetting(const std::string& key, | 555 void OnUpdateInspectorSetting(const std::string& key, |
556 const std::string& value); | 556 const std::string& value); |
557 void OnClosePageACK(); | 557 void OnClosePageACK(); |
558 void OnAccessibilityEvents( | 558 void OnAccessibilityEvents( |
559 const std::vector<AccessibilityHostMsg_EventParams>& params); | 559 const std::vector<AccessibilityHostMsg_EventParams>& params); |
560 void OnAccessibilityLocationChanges( | 560 void OnAccessibilityLocationChanges( |
561 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 561 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
562 void OnDidZoomURL(double zoom_level, bool remember, const GURL& url); | 562 void OnDidZoomURL(int zoom_id, double zoom_level, bool remember, |
| 563 const GURL& url); |
563 void OnRequestDesktopNotificationPermission(const GURL& origin, | 564 void OnRequestDesktopNotificationPermission(const GURL& origin, |
564 int callback_id); | 565 int callback_id); |
565 void OnShowDesktopNotification( | 566 void OnShowDesktopNotification( |
566 const ShowDesktopNotificationHostMsgParams& params); | 567 const ShowDesktopNotificationHostMsgParams& params); |
567 void OnCancelDesktopNotification(int notification_id); | 568 void OnCancelDesktopNotification(int notification_id); |
568 void OnRunFileChooser(const FileChooserParams& params); | 569 void OnRunFileChooser(const FileChooserParams& params); |
569 void OnDidAccessInitialDocument(); | 570 void OnDidAccessInitialDocument(); |
570 void OnFocusedNodeTouched(bool editable); | 571 void OnFocusedNodeTouched(bool editable); |
571 | 572 |
572 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 573 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
701 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 702 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
702 }; | 703 }; |
703 | 704 |
704 #if defined(COMPILER_MSVC) | 705 #if defined(COMPILER_MSVC) |
705 #pragma warning(pop) | 706 #pragma warning(pop) |
706 #endif | 707 #endif |
707 | 708 |
708 } // namespace content | 709 } // namespace content |
709 | 710 |
710 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 711 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |