| 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 <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/task.h" | |
| 16 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" | 15 #include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
| 17 #include "net/url_request/url_request_job_factory.h" | 16 #include "net/url_request/url_request_job_factory.h" |
| 18 | 17 |
| 19 class ChromeAppCacheService; | 18 class ChromeAppCacheService; |
| 20 class ChromeURLDataManagerBackend; | 19 class ChromeURLDataManagerBackend; |
| 21 class GURL; | 20 class GURL; |
| 22 class RefCountedMemory; | 21 class RefCountedMemory; |
| 23 class URLRequestChromeJob; | 22 class URLRequestChromeJob; |
| 24 | 23 |
| 25 namespace net { | 24 namespace net { |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 // The ID we'll use for the next request we receive. | 85 // The ID we'll use for the next request we receive. |
| 87 RequestID next_request_id_; | 86 RequestID next_request_id_; |
| 88 | 87 |
| 89 DISALLOW_COPY_AND_ASSIGN(ChromeURLDataManagerBackend); | 88 DISALLOW_COPY_AND_ASSIGN(ChromeURLDataManagerBackend); |
| 90 }; | 89 }; |
| 91 | 90 |
| 92 net::URLRequestJobFactory::ProtocolHandler* | 91 net::URLRequestJobFactory::ProtocolHandler* |
| 93 CreateDevToolsProtocolHandler(ChromeURLDataManagerBackend* backend); | 92 CreateDevToolsProtocolHandler(ChromeURLDataManagerBackend* backend); |
| 94 | 93 |
| 95 #endif // CHROME_BROWSER_UI_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ | 94 #endif // CHROME_BROWSER_UI_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ |
| OLD | NEW |