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

Unified Diff: headless/app/headless_shell_main.cc

Issue 2624343002: Get headless_shell building on Windows. (Closed)
Patch Set: Created 3 years, 11 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/app/headless_shell_main.cc
diff --git a/headless/app/headless_shell_main.cc b/headless/app/headless_shell_main.cc
index 3ae4553b06854f9745690e4cc992267a7e4862ad..a42ad22438c001de057ee83f9de3ea8505017060 100644
--- a/headless/app/headless_shell_main.cc
+++ b/headless/app/headless_shell_main.cc
@@ -3,7 +3,17 @@
// found in the LICENSE file.
#include "headless/public/headless_shell.h"
+#include "content/public/common/main_function_params.h"
int main(int argc, const char** argv) {
return headless::HeadlessShellMain(argc, argv);
}
+
+namespace content {
dvallet 2017/02/13 03:20:24 afaik Ppapi is only included in component build, s
+ int PpapiBrokerMain(const MainFunctionParams& parameters) {
+ return 0;
+ };
+ int PpapiPluginMain(const MainFunctionParams& parameters) {
+ return 0;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698