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

Unified Diff: headless/public/headless_shell.h

Issue 2762593002: Add --headless flag to Windows (Closed)
Patch Set: Fix Mac 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
« headless/BUILD.gn ('K') | « headless/public/headless_browser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: headless/public/headless_shell.h
diff --git a/headless/public/headless_shell.h b/headless/public/headless_shell.h
index 0fd9066a80d5ef01842a9decea1c10e04b67503c..783f4ba4994fde5c20d8ecb629f02d4b5ed8cc62 100644
--- a/headless/public/headless_shell.h
+++ b/headless/public/headless_shell.h
@@ -7,11 +7,21 @@
#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.
+#if defined(OS_WIN)
+HEADLESS_EXPORT int HeadlessShellMain(
+ HINSTANCE instance,
+ sandbox::SandboxInterfaceInfo* sandbox_info);
+#else
HEADLESS_EXPORT int HeadlessShellMain(int argc, const char** argv);
+#endif // defined(OS_WIN)
} // namespace headless
#endif // HEADLESS_PUBLIC_HEADLESS_SHELL_H_
« headless/BUILD.gn ('K') | « headless/public/headless_browser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698