OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "chrome/browser/guest_view/web_view/web_view_guest.h" | 5 #include "chrome/browser/guest_view/web_view/web_view_guest.h" |
6 | 6 |
7 #include "base/message_loop/message_loop.h" | 7 #include "base/message_loop/message_loop.h" |
8 #include "base/strings/stringprintf.h" | 8 #include "base/strings/stringprintf.h" |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "chrome/browser/chrome_notification_types.h" | 10 #include "chrome/browser/chrome_notification_types.h" |
11 #include "chrome/browser/content_settings/tab_specific_content_settings.h" | 11 #include "chrome/browser/content_settings/tab_specific_content_settings.h" |
12 #include "chrome/browser/extensions/api/web_request/web_request_api.h" | 12 #include "chrome/browser/extensions/api/web_request/web_request_api.h" |
13 #include "chrome/browser/extensions/api/webview/webview_api.h" | 13 #include "chrome/browser/extensions/api/webview/webview_api.h" |
14 #include "chrome/browser/extensions/chrome_extension_web_contents_observer.h" | 14 #include "chrome/browser/extensions/chrome_extension_web_contents_observer.h" |
15 #include "chrome/browser/extensions/extension_renderer_state.h" | 15 #include "chrome/browser/extensions/extension_renderer_state.h" |
16 #include "chrome/browser/extensions/menu_manager.h" | 16 #include "chrome/browser/extensions/menu_manager.h" |
17 #include "chrome/browser/extensions/script_executor.h" | 17 #include "chrome/browser/extensions/script_executor.h" |
18 #include "chrome/browser/favicon/favicon_tab_helper.h" | 18 #include "chrome/browser/favicon/favicon_tab_helper.h" |
19 #include "chrome/browser/geolocation/geolocation_permission_context.h" | 19 #include "chrome/browser/geolocation/geolocation_permission_context.h" |
20 #include "chrome/browser/geolocation/geolocation_permission_context_factory.h" | 20 #include "chrome/browser/geolocation/geolocation_permission_context_factory.h" |
21 #include "chrome/browser/guest_view/guest_view_constants.h" | 21 #include "chrome/browser/guest_view/guest_view_constants.h" |
22 #include "chrome/browser/guest_view/guest_view_manager.h" | 22 #include "chrome/browser/guest_view/guest_view_manager.h" |
23 #include "chrome/browser/guest_view/web_view/web_view_constants.h" | 23 #include "chrome/browser/guest_view/web_view/web_view_constants.h" |
24 #include "chrome/browser/guest_view/web_view/web_view_permission_types.h" | 24 #include "chrome/browser/guest_view/web_view/web_view_permission_types.h" |
25 #include "chrome/browser/renderer_context_menu/context_menu_delegate.h" | 25 #include "chrome/browser/renderer_context_menu/context_menu_delegate.h" |
26 #include "chrome/browser/renderer_context_menu/render_view_context_menu.h" | 26 #include "chrome/browser/renderer_context_menu/render_view_context_menu.h" |
27 #include "chrome/browser/ui/zoom/zoom_controller.h" | |
27 #include "chrome/common/chrome_version_info.h" | 28 #include "chrome/common/chrome_version_info.h" |
28 #include "chrome/common/render_messages.h" | 29 #include "chrome/common/render_messages.h" |
29 #include "content/public/browser/browser_thread.h" | 30 #include "content/public/browser/browser_thread.h" |
30 #include "content/public/browser/child_process_security_policy.h" | 31 #include "content/public/browser/child_process_security_policy.h" |
31 #include "content/public/browser/host_zoom_map.h" | 32 #include "content/public/browser/host_zoom_map.h" |
Devlin
2014/06/16 19:04:49
Do we still need this include?
wjmaclean
2014/06/18 19:03:53
No, removed.
| |
32 #include "content/public/browser/native_web_keyboard_event.h" | 33 #include "content/public/browser/native_web_keyboard_event.h" |
33 #include "content/public/browser/navigation_entry.h" | 34 #include "content/public/browser/navigation_entry.h" |
34 #include "content/public/browser/notification_details.h" | 35 #include "content/public/browser/notification_details.h" |
35 #include "content/public/browser/notification_service.h" | 36 #include "content/public/browser/notification_service.h" |
36 #include "content/public/browser/notification_source.h" | 37 #include "content/public/browser/notification_source.h" |
37 #include "content/public/browser/notification_types.h" | 38 #include "content/public/browser/notification_types.h" |
38 #include "content/public/browser/render_process_host.h" | 39 #include "content/public/browser/render_process_host.h" |
39 #include "content/public/browser/render_view_host.h" | 40 #include "content/public/browser/render_view_host.h" |
40 #include "content/public/browser/resource_request_details.h" | 41 #include "content/public/browser/resource_request_details.h" |
41 #include "content/public/browser/site_instance.h" | 42 #include "content/public/browser/site_instance.h" |
(...skipping 934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
976 guest_web_contents()->GetController().GetCurrentEntryIndex()); | 977 guest_web_contents()->GetController().GetCurrentEntryIndex()); |
977 args->SetInteger(webview::kInternalEntryCount, | 978 args->SetInteger(webview::kInternalEntryCount, |
978 guest_web_contents()->GetController().GetEntryCount()); | 979 guest_web_contents()->GetController().GetEntryCount()); |
979 args->SetInteger(webview::kInternalProcessId, | 980 args->SetInteger(webview::kInternalProcessId, |
980 guest_web_contents()->GetRenderProcessHost()->GetID()); | 981 guest_web_contents()->GetRenderProcessHost()->GetID()); |
981 DispatchEvent( | 982 DispatchEvent( |
982 new GuestViewBase::Event(webview::kEventLoadCommit, args.Pass())); | 983 new GuestViewBase::Event(webview::kEventLoadCommit, args.Pass())); |
983 | 984 |
984 // Update the current zoom factor for the new page. | 985 // Update the current zoom factor for the new page. |
985 current_zoom_factor_ = content::ZoomLevelToZoomFactor( | 986 current_zoom_factor_ = content::ZoomLevelToZoomFactor( |
986 content::HostZoomMap::GetZoomLevel(guest_web_contents())); | 987 ZoomController::FromWebContents(guest_web_contents())->GetZoomLevel()); |
987 | 988 |
988 if (is_main_frame) { | 989 if (is_main_frame) { |
989 chromevox_injected_ = false; | 990 chromevox_injected_ = false; |
990 main_frame_id_ = frame_id; | 991 main_frame_id_ = frame_id; |
991 } | 992 } |
992 } | 993 } |
993 | 994 |
994 void WebViewGuest::DidFailProvisionalLoad( | 995 void WebViewGuest::DidFailProvisionalLoad( |
995 int64 frame_id, | 996 int64 frame_id, |
996 const base::string16& frame_unique_name, | 997 const base::string16& frame_unique_name, |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1423 | 1424 |
1424 void WebViewGuest::SetName(const std::string& name) { | 1425 void WebViewGuest::SetName(const std::string& name) { |
1425 if (name_ == name) | 1426 if (name_ == name) |
1426 return; | 1427 return; |
1427 name_ = name; | 1428 name_ = name; |
1428 | 1429 |
1429 Send(new ChromeViewMsg_SetName(routing_id(), name_)); | 1430 Send(new ChromeViewMsg_SetName(routing_id(), name_)); |
1430 } | 1431 } |
1431 | 1432 |
1432 void WebViewGuest::SetZoom(double zoom_factor) { | 1433 void WebViewGuest::SetZoom(double zoom_factor) { |
1434 ZoomController* zoom_controller = | |
1435 ZoomController::FromWebContents(guest_web_contents()); | |
1433 double zoom_level = content::ZoomFactorToZoomLevel(zoom_factor); | 1436 double zoom_level = content::ZoomFactorToZoomLevel(zoom_factor); |
1434 content::HostZoomMap::SetZoomLevel(guest_web_contents(), zoom_level); | 1437 zoom_controller->SetZoomLevel(zoom_level); |
1435 | 1438 |
1436 scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue()); | 1439 scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue()); |
1437 args->SetDouble(webview::kOldZoomFactor, current_zoom_factor_); | 1440 args->SetDouble(webview::kOldZoomFactor, current_zoom_factor_); |
1438 args->SetDouble(webview::kNewZoomFactor, zoom_factor); | 1441 args->SetDouble(webview::kNewZoomFactor, zoom_factor); |
1439 DispatchEvent( | 1442 DispatchEvent( |
1440 new GuestViewBase::Event(webview::kEventZoomChange, args.Pass())); | 1443 new GuestViewBase::Event(webview::kEventZoomChange, args.Pass())); |
1441 | 1444 |
1442 current_zoom_factor_ = zoom_factor; | 1445 current_zoom_factor_ = zoom_factor; |
1443 } | 1446 } |
1444 | 1447 |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1589 bool allow, | 1592 bool allow, |
1590 const std::string& user_input) { | 1593 const std::string& user_input) { |
1591 WebViewGuest* guest = | 1594 WebViewGuest* guest = |
1592 WebViewGuest::From(embedder_render_process_id(), new_window_instance_id); | 1595 WebViewGuest::From(embedder_render_process_id(), new_window_instance_id); |
1593 if (!guest) | 1596 if (!guest) |
1594 return; | 1597 return; |
1595 | 1598 |
1596 if (!allow) | 1599 if (!allow) |
1597 guest->Destroy(); | 1600 guest->Destroy(); |
1598 } | 1601 } |
OLD | NEW |