| 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_DOM_UI_CHROME_URL_DATA_MANAGER_BACKEND_H_ | 5 #ifndef CHROME_BROWSER_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ |
| 6 #define CHROME_BROWSER_DOM_UI_CHROME_URL_DATA_MANAGER_BACKEND_H_ | 6 #define CHROME_BROWSER_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
| 11 #include "chrome/browser/dom_ui/chrome_url_data_manager.h" | 11 #include "chrome/browser/webui/chrome_url_data_manager.h" |
| 12 | 12 |
| 13 #include <map> | 13 #include <map> |
| 14 #include <string> | 14 #include <string> |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 class FilePath; | 17 class FilePath; |
| 18 class GURL; | 18 class GURL; |
| 19 class URLRequestChromeJob; | 19 class URLRequestChromeJob; |
| 20 | 20 |
| 21 namespace net { | 21 namespace net { |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 // URLRequestChromeJob calls into this object when it's constructed and | 89 // URLRequestChromeJob calls into this object when it's constructed and |
| 90 // destructed to ensure that the pointers in this map remain valid. | 90 // destructed to ensure that the pointers in this map remain valid. |
| 91 PendingRequestMap pending_requests_; | 91 PendingRequestMap pending_requests_; |
| 92 | 92 |
| 93 // The ID we'll use for the next request we receive. | 93 // The ID we'll use for the next request we receive. |
| 94 RequestID next_request_id_; | 94 RequestID next_request_id_; |
| 95 | 95 |
| 96 DISALLOW_COPY_AND_ASSIGN(ChromeURLDataManagerBackend); | 96 DISALLOW_COPY_AND_ASSIGN(ChromeURLDataManagerBackend); |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 #endif // CHROME_BROWSER_DOM_UI_CHROME_URL_DATA_MANAGER_BACKEND_H_ | 99 #endif // CHROME_BROWSER_WEBUI_CHROME_URL_DATA_MANAGER_BACKEND_H_ |
| OLD | NEW |