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_TEST_TESTING_PROFILE_H_ | 5 #ifndef CHROME_TEST_TESTING_PROFILE_H_ |
6 #define CHROME_TEST_TESTING_PROFILE_H_ | 6 #define CHROME_TEST_TESTING_PROFILE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 383 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
384 | 384 |
385 scoped_ptr<prerender::PrerenderManager> prerender_manager_; | 385 scoped_ptr<prerender::PrerenderManager> prerender_manager_; |
386 | 386 |
387 // We keep a weak pointer to the dependency manager we want to notify on our | 387 // We keep a weak pointer to the dependency manager we want to notify on our |
388 // death. Defaults to the Singleton implementation but overridable for | 388 // death. Defaults to the Singleton implementation but overridable for |
389 // testing. | 389 // testing. |
390 ProfileDependencyManager* profile_dependency_manager_; | 390 ProfileDependencyManager* profile_dependency_manager_; |
391 | 391 |
392 scoped_refptr<ChromeAppCacheService> appcache_service_; | 392 scoped_refptr<ChromeAppCacheService> appcache_service_; |
| 393 |
| 394 // The QuotaManager, created if GetQuotaManager is invoked. |
| 395 scoped_refptr<quota::QuotaManager> quota_manager_; |
393 }; | 396 }; |
394 | 397 |
395 #endif // CHROME_TEST_TESTING_PROFILE_H_ | 398 #endif // CHROME_TEST_TESTING_PROFILE_H_ |
OLD | NEW |