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

Unified Diff: chrome/test/testing_browser_process.h

Issue 7044095: Hooking MHTML generation to the browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style fixes Created 9 years, 6 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
Index: chrome/test/testing_browser_process.h
diff --git a/chrome/test/testing_browser_process.h b/chrome/test/testing_browser_process.h
index dfd25794193f7ebc8a230d0814bae96f905b4742..0764cf11b7e3701d8bcfa90de8fd482712dfa9f6 100644
--- a/chrome/test/testing_browser_process.h
+++ b/chrome/test/testing_browser_process.h
@@ -21,6 +21,7 @@
class BackgroundModeManager;
class IOThread;
class GoogleURLTracker;
+class MHTMLGenerationManager;
class NotificationUIManager;
class PrefService;
class WatchDogThread;
@@ -114,6 +115,7 @@ class TestingBrowserProcess : public BrowserProcess {
#if defined(IPC_MESSAGE_LOG_ENABLED)
virtual void SetIPCLoggingEnabled(bool enable) {}
#endif
+ virtual MHTMLGenerationManager* mhtml_generation_manager();
// Set the local state for tests. Consumer is responsible for cleaning it up
// afterwards (using ScopedTestingLocalState, for example).
@@ -136,6 +138,7 @@ class TestingBrowserProcess : public BrowserProcess {
scoped_ptr<NotificationUIManager> notification_ui_manager_;
scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_;
scoped_ptr<prerender::PrerenderTracker> prerender_tracker_;
+ scoped_ptr<MHTMLGenerationManager> mhtml_generation_manager_;
DISALLOW_COPY_AND_ASSIGN(TestingBrowserProcess);
};

Powered by Google App Engine
This is Rietveld 408576698