OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | |
10 #include "base/compiler_specific.h" | |
11 #include "base/memory/ref_counted.h" | |
12 #include "base/task.h" | |
13 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" | |
14 #include "net/url_request/url_request_job_factory.h" | |
15 | |
16 #include <map> | 9 #include <map> |
17 #include <string> | 10 #include <string> |
18 #include <vector> | 11 #include <vector> |
19 | 12 |
| 13 #include "base/basictypes.h" |
| 14 #include "base/compiler_specific.h" |
| 15 #include "base/task.h" |
| 16 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
| 17 #include "net/url_request/url_request_job_factory.h" |
| 18 |
20 class ChromeAppCacheService; | 19 class ChromeAppCacheService; |
21 class ChromeURLDataManagerBackend; | 20 class ChromeURLDataManagerBackend; |
22 class FilePath; | |
23 class GURL; | 21 class GURL; |
| 22 class RefCountedMemory; |
24 class URLRequestChromeJob; | 23 class URLRequestChromeJob; |
25 | 24 |
26 namespace net { | 25 namespace net { |
27 class URLRequest; | 26 class URLRequest; |
28 class URLRequestJob; | 27 class URLRequestJob; |
29 } | 28 } |
30 namespace webkit_blob { | 29 namespace webkit_blob { |
31 class BlobStorageController; | 30 class BlobStorageController; |
32 } | 31 } |
33 | 32 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 // The ID we'll use for the next request we receive. | 86 // The ID we'll use for the next request we receive. |
88 RequestID next_request_id_; | 87 RequestID next_request_id_; |
89 | 88 |
90 DISALLOW_COPY_AND_ASSIGN(ChromeURLDataManagerBackend); | 89 DISALLOW_COPY_AND_ASSIGN(ChromeURLDataManagerBackend); |
91 }; | 90 }; |
92 | 91 |
93 net::URLRequestJobFactory::ProtocolHandler* | 92 net::URLRequestJobFactory::ProtocolHandler* |
94 CreateDevToolsProtocolHandler(ChromeURLDataManagerBackend* backend); | 93 CreateDevToolsProtocolHandler(ChromeURLDataManagerBackend* backend); |
95 | 94 |
96 #endif // CHROME_BROWSER_UI_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ | 95 #endif // CHROME_BROWSER_UI_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ |
OLD | NEW |