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

Side by Side Diff: trunk/src/content/browser/browser_child_process_host_impl.cc

Issue 22984005: Revert 217172 "Enable high resolution time for TimeTicks::Now on..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 4 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/browser/browser_child_process_host_impl.h" 5 #include "content/browser/browser_child_process_host_impl.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 switches::kDisableLogging, 146 switches::kDisableLogging,
147 switches::kEnableDCHECK, 147 switches::kEnableDCHECK,
148 switches::kEnableLogging, 148 switches::kEnableLogging,
149 switches::kLoggingLevel, 149 switches::kLoggingLevel,
150 switches::kTraceToConsole, 150 switches::kTraceToConsole,
151 switches::kV, 151 switches::kV,
152 switches::kVModule, 152 switches::kVModule,
153 #if defined(OS_POSIX) 153 #if defined(OS_POSIX)
154 switches::kChildCleanExit, 154 switches::kChildCleanExit,
155 #endif 155 #endif
156 #if defined(OS_WIN)
157 switches::kEnableHighResolutionTime,
158 #endif
159 }; 156 };
160 cmd_line->CopySwitchesFrom(browser_command_line, kForwardSwitches, 157 cmd_line->CopySwitchesFrom(browser_command_line, kForwardSwitches,
161 arraysize(kForwardSwitches)); 158 arraysize(kForwardSwitches));
162 159
163 child_process_.reset(new ChildProcessLauncher( 160 child_process_.reset(new ChildProcessLauncher(
164 #if defined(OS_WIN) 161 #if defined(OS_WIN)
165 delegate, 162 delegate,
166 #elif defined(OS_POSIX) 163 #elif defined(OS_POSIX)
167 use_zygote, 164 use_zygote,
168 environ, 165 environ,
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 344
348 void BrowserChildProcessHostImpl::OnProcessExitedEarly( 345 void BrowserChildProcessHostImpl::OnProcessExitedEarly(
349 base::WaitableEvent* event) { 346 base::WaitableEvent* event) {
350 DeleteProcessWaitableEvent(event); 347 DeleteProcessWaitableEvent(event);
351 OnChildDisconnected(); 348 OnChildDisconnected();
352 } 349 }
353 350
354 #endif 351 #endif
355 352
356 } // namespace content 353 } // namespace content
OLDNEW
« no previous file with comments | « trunk/src/content/app/content_main_runner.cc ('k') | trunk/src/content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698