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

Unified Diff: content/renderer/renderer_main.h

Issue 7841009: export RendererMain (Closed)
Patch Set: fix stupid preprocessor typo Created 9 years, 3 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 | « content/common/content_export.h ('k') | content/renderer/renderer_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/renderer_main.h
diff --git a/content/renderer/renderer_main.h b/content/renderer/renderer_main.h
new file mode 100644
index 0000000000000000000000000000000000000000..a830c881db0de1fb75edf11501722fed6613d72a
--- /dev/null
+++ b/content/renderer/renderer_main.h
@@ -0,0 +1,16 @@
+// 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 CONTENT_RENDERER_RENDERER_MAIN_H_
+#define CONTENT_RENDERER_RENDERER_MAIN_H_
+#pragma once
+
+#include "content/common/content_export.h"
+
+struct MainFunctionParams;
+
+// This is the mainline routine for running as the Renderer process.
+CONTENT_EXPORT int RendererMain(const MainFunctionParams& parameters);
+
+#endif // CONTENT_RENDERER_RENDERER_MAIN_H_
« no previous file with comments | « content/common/content_export.h ('k') | content/renderer/renderer_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698