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

Unified Diff: chrome/browser/browser_process.h

Issue 6308001: When clearing plugin data at shutdown, wait for it to finish. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unnecessary stuff Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process.h
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h
index 1f335c057226bc5573216495990e38a4c7354474..831615ca34262c271c0576bd9d6ce2db1e525614 100644
--- a/chrome/browser/browser_process.h
+++ b/chrome/browser/browser_process.h
@@ -187,10 +187,21 @@ class BrowserProcess {
virtual void SetIPCLoggingEnabled(bool enable) = 0;
#endif
+ // Used for testing plugin data removal at shutdown.
+ const std::string& plugin_data_remover_mime_type() const {
+ return plugin_data_remover_mime_type_;
+ }
+
+ void set_plugin_data_remover_mime_type(const std::string& mime_type) {
+ plugin_data_remover_mime_type_ = mime_type;
+ }
+
private:
// User-data-dir based profiles.
std::vector<std::wstring> user_data_dir_profiles_;
+ std::string plugin_data_remover_mime_type_;
jam 2011/01/20 18:34:15 this needs a comment. by convention we don't put
+
DISALLOW_COPY_AND_ASSIGN(BrowserProcess);
};
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698