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

Side by Side Diff: chrome/browser/chromeos/login/login_utils.cc

Issue 7757008: turn on --enable-accelerated-plugins by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/tab_contents/render_view_host_delegate_helper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/login/login_utils.h" 5 #include "chrome/browser/chromeos/login/login_utils.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 CrosLibrary::Get()->GetLoginLibrary()->RestartJob(getpid(), cmd_line_str); 714 CrosLibrary::Get()->GetLoginLibrary()->RestartJob(getpid(), cmd_line_str);
715 } 715 }
716 } 716 }
717 717
718 std::string LoginUtilsImpl::GetOffTheRecordCommandLine( 718 std::string LoginUtilsImpl::GetOffTheRecordCommandLine(
719 const GURL& start_url, 719 const GURL& start_url,
720 const CommandLine& base_command_line, 720 const CommandLine& base_command_line,
721 CommandLine* command_line) { 721 CommandLine* command_line) {
722 static const char* kForwardSwitches[] = { 722 static const char* kForwardSwitches[] = {
723 switches::kEnableLogging, 723 switches::kEnableLogging,
724 switches::kEnableAcceleratedPlugins, 724 switches::kDisableAcceleratedPlugins,
725 switches::kUseGL, 725 switches::kUseGL,
726 switches::kUserDataDir, 726 switches::kUserDataDir,
727 switches::kScrollPixels, 727 switches::kScrollPixels,
728 switches::kEnableGView, 728 switches::kEnableGView,
729 switches::kNoFirstRun, 729 switches::kNoFirstRun,
730 switches::kLoginProfile, 730 switches::kLoginProfile,
731 switches::kCompressSystemFeedback, 731 switches::kCompressSystemFeedback,
732 switches::kDisableSeccompSandbox, 732 switches::kDisableSeccompSandbox,
733 switches::kPpapiFlashInProcess, 733 switches::kPpapiFlashInProcess,
734 switches::kPpapiFlashPath, 734 switches::kPpapiFlashPath,
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
1036 // Mark login host for deletion after browser starts. This 1036 // Mark login host for deletion after browser starts. This
1037 // guarantees that the message loop will be referenced by the 1037 // guarantees that the message loop will be referenced by the
1038 // browser before it is dereferenced by the login host. 1038 // browser before it is dereferenced by the login host.
1039 if (login_host) { 1039 if (login_host) {
1040 login_host->OnSessionStart(); 1040 login_host->OnSessionStart();
1041 login_host = NULL; 1041 login_host = NULL;
1042 } 1042 }
1043 } 1043 }
1044 1044
1045 } // namespace chromeos 1045 } // namespace chromeos
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/tab_contents/render_view_host_delegate_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698