Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc

Issue 505893002: Revert of Move core web_view code to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include "chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate. h" 5 #include "chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate. h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/base64.h" 10 #include "base/base64.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 #if defined(ENABLE_CONFIGURATION_POLICY) 56 #if defined(ENABLE_CONFIGURATION_POLICY)
57 #include "components/policy/core/common/cloud/policy_header_io_helper.h" 57 #include "components/policy/core/common/cloud/policy_header_io_helper.h"
58 #endif 58 #endif
59 59
60 #if defined(ENABLE_EXTENSIONS) 60 #if defined(ENABLE_EXTENSIONS)
61 #include "chrome/browser/apps/app_url_redirector.h" 61 #include "chrome/browser/apps/app_url_redirector.h"
62 #include "chrome/browser/apps/ephemeral_app_throttle.h" 62 #include "chrome/browser/apps/ephemeral_app_throttle.h"
63 #include "chrome/browser/extensions/api/streams_private/streams_private_api.h" 63 #include "chrome/browser/extensions/api/streams_private/streams_private_api.h"
64 #include "chrome/browser/extensions/user_script_listener.h" 64 #include "chrome/browser/extensions/user_script_listener.h"
65 #include "chrome/browser/guest_view/web_view/web_view_renderer_state.h"
65 #include "chrome/common/extensions/manifest_handlers/mime_types_handler.h" 66 #include "chrome/common/extensions/manifest_handlers/mime_types_handler.h"
66 #include "extensions/browser/guest_view/web_view/web_view_renderer_state.h"
67 #include "extensions/browser/info_map.h" 67 #include "extensions/browser/info_map.h"
68 #include "extensions/common/constants.h" 68 #include "extensions/common/constants.h"
69 #include "extensions/common/user_script.h" 69 #include "extensions/common/user_script.h"
70 #endif 70 #endif
71 71
72 #if defined(ENABLE_MANAGED_USERS) 72 #if defined(ENABLE_MANAGED_USERS)
73 #include "chrome/browser/supervised_user/supervised_user_resource_throttle.h" 73 #include "chrome/browser/supervised_user/supervised_user_resource_throttle.h"
74 #endif 74 #endif
75 75
76 #if defined(USE_SYSTEM_PROTOBUF) 76 #if defined(USE_SYSTEM_PROTOBUF)
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 url_request->GetTotalReceivedBytes())); 728 url_request->GetTotalReceivedBytes()));
729 } 729 }
730 } 730 }
731 731
732 // static 732 // static
733 void ChromeResourceDispatcherHostDelegate:: 733 void ChromeResourceDispatcherHostDelegate::
734 SetExternalProtocolHandlerDelegateForTesting( 734 SetExternalProtocolHandlerDelegateForTesting(
735 ExternalProtocolHandler::Delegate* delegate) { 735 ExternalProtocolHandler::Delegate* delegate) {
736 g_external_protocol_handler_delegate = delegate; 736 g_external_protocol_handler_delegate = delegate;
737 } 737 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698