Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: chrome/test/testing_profile.h

Issue 7129018: Time-based removal of temporary file systems via BrowsingDataRemover (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: const_iterator. Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698