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

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

Issue 10701105: Update webkit_resources to support high-dpi assets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change resource_bundle_mac.mm to load webkit_resources* on Mac as for other platforms Created 8 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
« no previous file with comments | « chrome/tools/build/win/FILES.cfg ('k') | content/browser/zygote_host/zygote_host_impl_linux.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) 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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
790 switches::kEnableViewport, 790 switches::kEnableViewport,
791 switches::kForceDeviceScaleFactor, 791 switches::kForceDeviceScaleFactor,
792 switches::kFullMemoryCrashReport, 792 switches::kFullMemoryCrashReport,
793 #if !defined (GOOGLE_CHROME_BUILD) 793 #if !defined (GOOGLE_CHROME_BUILD)
794 // These are unsupported and not fully tested modes, so don't enable them 794 // These are unsupported and not fully tested modes, so don't enable them
795 // for official Google Chrome builds. 795 // for official Google Chrome builds.
796 switches::kInProcessPlugins, 796 switches::kInProcessPlugins,
797 #endif // GOOGLE_CHROME_BUILD 797 #endif // GOOGLE_CHROME_BUILD
798 switches::kInProcessWebGL, 798 switches::kInProcessWebGL,
799 switches::kJavaScriptFlags, 799 switches::kJavaScriptFlags,
800 switches::kLoad2xResources,
800 switches::kLoggingLevel, 801 switches::kLoggingLevel,
801 switches::kOldCheckboxStyle, 802 switches::kOldCheckboxStyle,
802 switches::kNoReferrers, 803 switches::kNoReferrers,
803 switches::kNoSandbox, 804 switches::kNoSandbox,
804 switches::kPpapiOutOfProcess, 805 switches::kPpapiOutOfProcess,
805 switches::kRegisterPepperPlugins, 806 switches::kRegisterPepperPlugins,
806 switches::kRendererAssertTest, 807 switches::kRendererAssertTest,
807 #if defined(OS_POSIX) 808 #if defined(OS_POSIX)
808 switches::kChildCleanExit, 809 switches::kChildCleanExit,
809 #endif 810 #endif
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
1510 int32 route_id, 1511 int32 route_id,
1511 int32 gpu_process_host_id) { 1512 int32 gpu_process_host_id) {
1512 TRACE_EVENT0("renderer_host", 1513 TRACE_EVENT0("renderer_host",
1513 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1514 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1514 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1515 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1515 gpu_process_host_id, 1516 gpu_process_host_id,
1516 0); 1517 0);
1517 } 1518 }
1518 1519
1519 } // namespace content 1520 } // namespace content
OLDNEW
« no previous file with comments | « chrome/tools/build/win/FILES.cfg ('k') | content/browser/zygote_host/zygote_host_impl_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698