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 ANDROID_WEBVIEW_LIB_RENDERER_HOST_AW_RESOURCE_DISPATCHER_HOST_DELEGATE_H
_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_RENDERER_HOST_AW_RESOURCE_DISPATCHER_HOST_DELEGA
TE_H_ |
6 #define ANDROID_WEBVIEW_LIB_RENDERER_HOST_AW_RESOURCE_DISPATCHER_HOST_DELEGATE_H
_ | 6 #define ANDROID_WEBVIEW_BROWSER_RENDERER_HOST_AW_RESOURCE_DISPATCHER_HOST_DELEGA
TE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/lazy_instance.h" | 12 #include "base/lazy_instance.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "content/public/browser/resource_context.h" | 14 #include "content/public/browser/resource_context.h" |
15 #include "content/public/browser/resource_dispatcher_host_delegate.h" | 15 #include "content/public/browser/resource_dispatcher_host_delegate.h" |
16 | 16 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 PendingThrottleMap; | 87 PendingThrottleMap; |
88 | 88 |
89 // Only accessed on the IO thread. | 89 // Only accessed on the IO thread. |
90 PendingThrottleMap pending_throttles_; | 90 PendingThrottleMap pending_throttles_; |
91 | 91 |
92 DISALLOW_COPY_AND_ASSIGN(AwResourceDispatcherHostDelegate); | 92 DISALLOW_COPY_AND_ASSIGN(AwResourceDispatcherHostDelegate); |
93 }; | 93 }; |
94 | 94 |
95 } // namespace android_webview | 95 } // namespace android_webview |
96 | 96 |
97 #endif // ANDROID_WEBVIEW_LIB_RENDERER_HOST_AW_RESOURCE_DISPATCHER_HOST_H_ | 97 #endif // ANDROID_WEBVIEW_BROWSER_RENDERER_HOST_AW_RESOURCE_DISPATCHER_HOST_DEL
EGATE_H_ |
OLD | NEW |