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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 10810060: Revert 147887 - Enable new checkbox style by default (Linux/CrOS only) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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 | « chrome/browser/chromeos/login/login_utils.cc ('k') | ui/base/native_theme/native_theme_base.h » ('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) 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 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #if defined(OS_WIN) 10 #if defined(OS_WIN)
(...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after
787 switches::kForceDeviceScaleFactor, 787 switches::kForceDeviceScaleFactor,
788 switches::kFullMemoryCrashReport, 788 switches::kFullMemoryCrashReport,
789 #if !defined (GOOGLE_CHROME_BUILD) 789 #if !defined (GOOGLE_CHROME_BUILD)
790 // These are unsupported and not fully tested modes, so don't enable them 790 // These are unsupported and not fully tested modes, so don't enable them
791 // for official Google Chrome builds. 791 // for official Google Chrome builds.
792 switches::kInProcessPlugins, 792 switches::kInProcessPlugins,
793 #endif // GOOGLE_CHROME_BUILD 793 #endif // GOOGLE_CHROME_BUILD
794 switches::kInProcessWebGL, 794 switches::kInProcessWebGL,
795 switches::kJavaScriptFlags, 795 switches::kJavaScriptFlags,
796 switches::kLoggingLevel, 796 switches::kLoggingLevel,
797 switches::kOldCheckboxStyle, 797 switches::kNewCheckboxStyle,
798 switches::kNoReferrers, 798 switches::kNoReferrers,
799 switches::kNoSandbox, 799 switches::kNoSandbox,
800 switches::kPpapiOutOfProcess, 800 switches::kPpapiOutOfProcess,
801 switches::kRegisterPepperPlugins, 801 switches::kRegisterPepperPlugins,
802 switches::kRendererAssertTest, 802 switches::kRendererAssertTest,
803 #if defined(OS_POSIX) 803 #if defined(OS_POSIX)
804 switches::kRendererCleanExit, 804 switches::kRendererCleanExit,
805 #endif 805 #endif
806 switches::kRendererStartupDialog, 806 switches::kRendererStartupDialog,
807 switches::kShowPaintRects, 807 switches::kShowPaintRects,
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after
1506 int32 route_id, 1506 int32 route_id,
1507 int32 gpu_process_host_id) { 1507 int32 gpu_process_host_id) {
1508 TRACE_EVENT0("renderer_host", 1508 TRACE_EVENT0("renderer_host",
1509 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1509 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1510 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1510 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1511 gpu_process_host_id, 1511 gpu_process_host_id,
1512 0); 1512 0);
1513 } 1513 }
1514 1514
1515 } // namespace content 1515 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.cc ('k') | ui/base/native_theme/native_theme_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698