| 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 CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 13 #include "chrome/browser/external_protocol/external_protocol_handler.h" | 14 #include "chrome/browser/external_protocol/external_protocol_handler.h" |
| 14 #include "content/public/browser/resource_dispatcher_host_delegate.h" | 15 #include "content/public/browser/resource_dispatcher_host_delegate.h" |
| 15 | 16 |
| 16 class DelayedResourceQueue; | 17 class DelayedResourceQueue; |
| 17 class DownloadRequestLimiter; | 18 class DownloadRequestLimiter; |
| 18 | 19 |
| 19 namespace extensions { | 20 namespace extensions { |
| 20 class UserScriptListener; | 21 class UserScriptListener; |
| 21 } | 22 } |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 scoped_refptr<safe_browsing::SafeBrowsingService> safe_browsing_; | 107 scoped_refptr<safe_browsing::SafeBrowsingService> safe_browsing_; |
| 107 #if defined(ENABLE_EXTENSIONS) | 108 #if defined(ENABLE_EXTENSIONS) |
| 108 scoped_refptr<extensions::UserScriptListener> user_script_listener_; | 109 scoped_refptr<extensions::UserScriptListener> user_script_listener_; |
| 109 std::map<net::URLRequest*, StreamTargetInfo> stream_target_info_; | 110 std::map<net::URLRequest*, StreamTargetInfo> stream_target_info_; |
| 110 #endif | 111 #endif |
| 111 | 112 |
| 112 DISALLOW_COPY_AND_ASSIGN(ChromeResourceDispatcherHostDelegate); | 113 DISALLOW_COPY_AND_ASSIGN(ChromeResourceDispatcherHostDelegate); |
| 113 }; | 114 }; |
| 114 | 115 |
| 115 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE
_H_ | 116 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE
_H_ |
| OLD | NEW |