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

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

Issue 12589005: Implement web speech synthesis. (Closed) Base URL: http://git.chromium.org/chromium/src.git@webtts
Patch Set: Fix android build Created 7 years, 7 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
« no previous file with comments | « chrome/renderer/tts_dispatcher.cc ('k') | content/public/common/content_switches.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 #include <algorithm> 10 #include <algorithm>
(...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 switches::kDisableEncryptedMedia, 838 switches::kDisableEncryptedMedia,
839 switches::kEnableExperimentalWebKitFeatures, 839 switches::kEnableExperimentalWebKitFeatures,
840 switches::kEnableFixedLayout, 840 switches::kEnableFixedLayout,
841 switches::kEnableDeferredImageDecoding, 841 switches::kEnableDeferredImageDecoding,
842 switches::kEnableGPUServiceLogging, 842 switches::kEnableGPUServiceLogging,
843 switches::kEnableGPUClientLogging, 843 switches::kEnableGPUClientLogging,
844 switches::kEnableGpuClientTracing, 844 switches::kEnableGpuClientTracing,
845 switches::kEnableGpuBenchmarking, 845 switches::kEnableGpuBenchmarking,
846 switches::kEnableMemoryBenchmarking, 846 switches::kEnableMemoryBenchmarking,
847 switches::kEnableLogging, 847 switches::kEnableLogging,
848 switches::kEnableSpeechSynthesis,
848 switches::kEnableTouchDragDrop, 849 switches::kEnableTouchDragDrop,
849 switches::kEnableTouchEditing, 850 switches::kEnableTouchEditing,
850 switches::kEnableVsyncNotification, 851 switches::kEnableVsyncNotification,
851 switches::kEnableWebPInAcceptHeader, 852 switches::kEnableWebPInAcceptHeader,
852 switches::kDisableMediaSource, 853 switches::kDisableMediaSource,
853 switches::kDisableRendererSideMixing, 854 switches::kDisableRendererSideMixing,
854 switches::kEnableStrictSiteIsolation, 855 switches::kEnableStrictSiteIsolation,
855 switches::kDisableFullScreen, 856 switches::kDisableFullScreen,
856 switches::kEnableNewDialogStyle, 857 switches::kEnableNewDialogStyle,
857 #if defined(ENABLE_PLUGINS) 858 #if defined(ENABLE_PLUGINS)
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
1741 TRACE_EVENT0("renderer_host", 1742 TRACE_EVENT0("renderer_host",
1742 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1743 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1743 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1744 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1744 ack_params.sync_point = 0; 1745 ack_params.sync_point = 0;
1745 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1746 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1746 gpu_process_host_id, 1747 gpu_process_host_id,
1747 ack_params); 1748 ack_params);
1748 } 1749 }
1749 1750
1750 } // namespace content 1751 } // namespace content
OLDNEW
« no previous file with comments | « chrome/renderer/tts_dispatcher.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698