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

Unified Diff: headless/public/headless_shell.h

Issue 2762593002: Add --headless flag to Windows (Closed)
Patch Set: fix headless_shell build Created 3 years, 9 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: headless/public/headless_shell.h
diff --git a/headless/public/headless_shell.h b/headless/public/headless_shell.h
index 0fd9066a80d5ef01842a9decea1c10e04b67503c..00cdca975a29fce8a9170a8d1203c64a9f9cc537 100644
--- a/headless/public/headless_shell.h
+++ b/headless/public/headless_shell.h
@@ -5,13 +5,20 @@
#ifndef HEADLESS_PUBLIC_HEADLESS_SHELL_H_
#define HEADLESS_PUBLIC_HEADLESS_SHELL_H_
-#include "headless/public/headless_export.h"
+#if defined(OS_WIN)
+#include "sandbox/win/src/sandbox_types.h"
+#endif
namespace headless {
// Start the Headless Shell application. Intended to be called early in main().
// Returns the exit code for the process.
-HEADLESS_EXPORT int HeadlessShellMain(int argc, const char** argv);
+#if defined(OS_WIN)
+int HeadlessShellMain(HINSTANCE instance,
+ sandbox::SandboxInterfaceInfo* sandbox_info);
+#else
+int HeadlessShellMain(int argc, const char** argv);
+#endif // defined(OS_WIN)
} // namespace headless
#endif // HEADLESS_PUBLIC_HEADLESS_SHELL_H_

Powered by Google App Engine
This is Rietveld 408576698