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

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

Issue 16320005: Define EncodedVideoSource and RtcCapturedEncodingVideoCapturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased at 209707. Fix compile warnings. Created 7 years, 5 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 | content/browser/renderer_host/render_process_host_impl.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/chrome_restart_request.h" 5 #include "chrome/browser/chromeos/login/chrome_restart_request.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "ash/ash_switches.h" 9 #include "ash/ash_switches.h"
10 #include "base/chromeos/chromeos_version.h" 10 #include "base/chromeos/chromeos_version.h"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 ::switches::kDisableSeccompFilterSandbox, 83 ::switches::kDisableSeccompFilterSandbox,
84 ::switches::kDisableSetuidSandbox, 84 ::switches::kDisableSetuidSandbox,
85 ::switches::kDisableThreadedCompositing, 85 ::switches::kDisableThreadedCompositing,
86 ::switches::kDisableTouchDragDrop, 86 ::switches::kDisableTouchDragDrop,
87 ::switches::kDisableTouchEditing, 87 ::switches::kDisableTouchEditing,
88 ::switches::kDisableWebKitMediaSource, 88 ::switches::kDisableWebKitMediaSource,
89 ::switches::kEnableAcceleratedOverflowScroll, 89 ::switches::kEnableAcceleratedOverflowScroll,
90 ::switches::kEnableBeginFrameScheduling, 90 ::switches::kEnableBeginFrameScheduling,
91 ::switches::kEnableBrowserInputController, 91 ::switches::kEnableBrowserInputController,
92 ::switches::kEnableCompositingForFixedPosition, 92 ::switches::kEnableCompositingForFixedPosition,
93 ::switches::kEnableEncodedScreenCapture,
93 ::switches::kEnableEncryptedMedia, 94 ::switches::kEnableEncryptedMedia,
94 ::switches::kEnableGestureTapHighlight, 95 ::switches::kEnableGestureTapHighlight,
95 ::switches::kDisableGestureTapHighlight, 96 ::switches::kDisableGestureTapHighlight,
96 ::switches::kDisableGpuSandbox, 97 ::switches::kDisableGpuSandbox,
97 ::switches::kEnableLogging, 98 ::switches::kEnableLogging,
98 ::switches::kEnablePinch, 99 ::switches::kEnablePinch,
99 ::switches::kEnableThreadedCompositing, 100 ::switches::kEnableThreadedCompositing,
100 ::switches::kEnableTouchDragDrop, 101 ::switches::kEnableTouchDragDrop,
101 ::switches::kEnableTouchEditing, 102 ::switches::kEnableTouchEditing,
102 ::switches::kEnableViewport, 103 ::switches::kEnableViewport,
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 // Relaunch chrome without session manager on dev box. 346 // Relaunch chrome without session manager on dev box.
346 ReLaunch(command_line); 347 ReLaunch(command_line);
347 return; 348 return;
348 } 349 }
349 350
350 // ChromeRestartRequest deletes itself after request sent to session manager. 351 // ChromeRestartRequest deletes itself after request sent to session manager.
351 (new ChromeRestartRequest(command_line))->Start(); 352 (new ChromeRestartRequest(command_line))->Start();
352 } 353 }
353 354
354 } // namespace chromeos 355 } // namespace chromeos
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698