reverted print statements in nsBrowserApp.cpp draft
authorRay <paarthurnax@live.ca>
Tue, 27 Feb 2018 14:16:37 -0500
changeset 760508 6e50bf40979bca2246fc686d34d0a299d6b06e55
parent 760507 809364c0cba8e9ad42d33bbbbccf8b089f4ab32d
child 760509 61036af9ca61c5c6f93c598581b19bbbf588ee9e
push id100679
push userbmo:paarthurnax@live.ca
push dateTue, 27 Feb 2018 20:04:41 +0000
milestone59.0a1
reverted print statements in nsBrowserApp.cpp MozReview-Commit-ID: 4KaNiqf2145
browser/app/nsBrowserApp.cpp
--- a/browser/app/nsBrowserApp.cpp
+++ b/browser/app/nsBrowserApp.cpp
@@ -1,15 +1,13 @@
 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 /* This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this
  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 
-#include <iostream>
-
 #include "nsXULAppAPI.h"
 #include "mozilla/XREAppData.h"
 #include "application.ini.h"
 #include "mozilla/Bootstrap.h"
 #if defined(XP_WIN)
 #include <windows.h>
 #include <stdlib.h>
 #elif defined(XP_UNIX)
@@ -160,19 +158,16 @@ static bool IsArg(const char* arg, const
 
   return false;
 }
 
 Bootstrap::UniquePtr gBootstrap;
 
 static int do_main(int argc, char* argv[], char* envp[])
 {
-
-  std::cout << "me: MOM GET THE CAMERA \n mom: Why son... \n me: I DID IT\n";
-
   // Allow firefox.exe to launch XULRunner apps via -app <application.ini>
   // Note that -app must be the *first* argument.
   const char *appDataFile = getenv("XUL_APP_FILE");
   if ((!appDataFile || !*appDataFile) &&
       (argc > 1 && IsArg(argv[1], "app"))) {
     if (argc == 2) {
       Output("Incorrect number of arguments passed to -app");
       return 255;