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); |
}; |