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..fcb7c47b7af555a50abc4faaf48de152d0392370 |
--- /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; |
+ |
+// mainline routine for running as the Renderer process |
jam
2011/09/06 23:46:33
nit: comments are supposed to use proper spelling
|
+CONTENT_EXPORT int RendererMain(const MainFunctionParams& parameters); |
+ |
+#endif // CONTENT_RENDERER_RENDERER_MAIN_H_ |