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

Unified Diff: headless/app/headless_shell_win.cc

Issue 2887033003: Add specific headless_shell_win.cc and headless_content_main_delegate_win.cc (Closed)
Patch Set: Created 3 years, 7 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/app/headless_shell.h ('K') | « headless/app/headless_shell.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: headless/app/headless_shell_win.cc
diff --git a/headless/app/headless_shell_win.cc b/headless/app/headless_shell_win.cc
new file mode 100644
index 0000000000000000000000000000000000000000..707987a4e04e1e8411ee23d18154f21d199dc1f4
--- /dev/null
+++ b/headless/app/headless_shell_win.cc
@@ -0,0 +1,24 @@
+// Copyright 2017 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.
+
+#include <memory>
Sami 2017/05/17 13:11:05 Do you need all these includes?
+#include <sstream>
+#include <string>
+#include <utility>
+
+#include "headless/app/headless_shell.h"
+#include "headless/app/headless_shell_switches.h"
+#include "headless/public/headless_browser.h"
+
+namespace headless {
+
+#if defined(CHROME_MULTIPLE_DLL_CHILD)
+void HeadlessShell::OnStart(HeadlessBrowser* browser) {}
+
+void HeadlessShell::Shutdown() {}
+
+void HeadlessShell::DevToolsTargetReady() {}
+#endif // defined(CHROME_MULTIPLE_DLL_CHILD)
+
+} // namespace headless
« headless/app/headless_shell.h ('K') | « headless/app/headless_shell.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698