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

Side by Side Diff: chrome/test/base/testing_browser_process.h

Issue 8758003: Remove dead code for gpu blacklist auto-update. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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 // An implementation of BrowserProcess for unit tests that fails for most 5 // An implementation of BrowserProcess for unit tests that fails for most
6 // services. By preventing creation of services, we reduce dependencies and 6 // services. By preventing creation of services, we reduce dependencies and
7 // keep the profile clean. Clients of this class must handle the NULL return 7 // keep the profile clean. Clients of this class must handle the NULL return
8 // value, however. 8 // value, however.
9 9
10 #ifndef CHROME_TEST_BASE_TESTING_BROWSER_PROCESS_H_ 10 #ifndef CHROME_TEST_BASE_TESTING_BROWSER_PROCESS_H_
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 virtual DownloadRequestLimiter* download_request_limiter() OVERRIDE; 102 virtual DownloadRequestLimiter* download_request_limiter() OVERRIDE;
103 virtual bool plugin_finder_disabled() const OVERRIDE; 103 virtual bool plugin_finder_disabled() const OVERRIDE;
104 104
105 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) 105 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
106 virtual void StartAutoupdateTimer() OVERRIDE {} 106 virtual void StartAutoupdateTimer() OVERRIDE {}
107 #endif 107 #endif
108 108
109 virtual ChromeNetLog* net_log() OVERRIDE; 109 virtual ChromeNetLog* net_log() OVERRIDE;
110 virtual prerender::PrerenderTracker* prerender_tracker() OVERRIDE; 110 virtual prerender::PrerenderTracker* prerender_tracker() OVERRIDE;
111 virtual MHTMLGenerationManager* mhtml_generation_manager() OVERRIDE; 111 virtual MHTMLGenerationManager* mhtml_generation_manager() OVERRIDE;
112 virtual GpuBlacklistUpdater* gpu_blacklist_updater() OVERRIDE;
113 virtual ComponentUpdateService* component_updater() OVERRIDE; 112 virtual ComponentUpdateService* component_updater() OVERRIDE;
114 virtual CRLSetFetcher* crl_set_fetcher() OVERRIDE; 113 virtual CRLSetFetcher* crl_set_fetcher() OVERRIDE;
115 114
116 // Set the local state for tests. Consumer is responsible for cleaning it up 115 // Set the local state for tests. Consumer is responsible for cleaning it up
117 // afterwards (using ScopedTestingLocalState, for example). 116 // afterwards (using ScopedTestingLocalState, for example).
118 void SetLocalState(PrefService* local_state); 117 void SetLocalState(PrefService* local_state);
119 void SetGoogleURLTracker(GoogleURLTracker* google_url_tracker); 118 void SetGoogleURLTracker(GoogleURLTracker* google_url_tracker);
120 void SetProfileManager(ProfileManager* profile_manager); 119 void SetProfileManager(ProfileManager* profile_manager);
121 void SetIOThread(IOThread* io_thread); 120 void SetIOThread(IOThread* io_thread);
122 void SetBrowserPolicyConnector(policy::BrowserPolicyConnector* connector); 121 void SetBrowserPolicyConnector(policy::BrowserPolicyConnector* connector);
(...skipping 13 matching lines...) Expand all
136 scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_; 135 scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_;
137 scoped_refptr<printing::PrintPreviewTabController> 136 scoped_refptr<printing::PrintPreviewTabController>
138 print_preview_tab_controller_; 137 print_preview_tab_controller_;
139 scoped_ptr<prerender::PrerenderTracker> prerender_tracker_; 138 scoped_ptr<prerender::PrerenderTracker> prerender_tracker_;
140 IOThread* io_thread_; 139 IOThread* io_thread_;
141 140
142 DISALLOW_COPY_AND_ASSIGN(TestingBrowserProcess); 141 DISALLOW_COPY_AND_ASSIGN(TestingBrowserProcess);
143 }; 142 };
144 143
145 #endif // CHROME_TEST_BASE_TESTING_BROWSER_PROCESS_H_ 144 #endif // CHROME_TEST_BASE_TESTING_BROWSER_PROCESS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698