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

Unified Diff: chrome/renderer/mhtml_generator.h

Issue 7044095: Hooking MHTML generation to the browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Synced 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
« no previous file with comments | « chrome/renderer/chrome_content_renderer_client.cc ('k') | chrome/renderer/mhtml_generator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/mhtml_generator.h
diff --git a/chrome/renderer/mhtml_generator.h b/chrome/renderer/mhtml_generator.h
new file mode 100644
index 0000000000000000000000000000000000000000..352065765a0bf6150f73de8a0dd215ad14012895
--- /dev/null
+++ b/chrome/renderer/mhtml_generator.h
@@ -0,0 +1,32 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_RENDERER_MHTML_GENERATOR_H_
+#define CHROME_RENDERER_MHTML_GENERATOR_H_
+
+#include "content/renderer/render_view_observer.h"
+
+#include "ipc/ipc_platform_file.h"
+
+class MHTMLGenerator : public RenderViewObserver {
+ public:
+ explicit MHTMLGenerator(RenderView* render_view);
+ virtual ~MHTMLGenerator();
+
+ private:
+ // RenderViewObserver implementation:
+ virtual bool OnMessageReceived(const IPC::Message& message);
+
+ void OnSavePageAsMHTML(int job_id,
+ IPC::PlatformFileForTransit file_for_transit);
+
+ void NotifyBrowser(int job_id, bool success);
+ bool GenerateMHTML();
+
+ base::PlatformFile file_;
+
+ DISALLOW_COPY_AND_ASSIGN(MHTMLGenerator);
+};
+
+#endif // CHROME_RENDERER_MHTML_GENERATOR_H_
« no previous file with comments | « chrome/renderer/chrome_content_renderer_client.cc ('k') | chrome/renderer/mhtml_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698