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

Issue 339823003: Oilpan: move platform speech objects to the heap. (Closed)

Created:
6 years, 6 months ago by sof
Modified:
6 years, 6 months ago
CC:
blink-reviews, jamesr, dglazkov+blink, abarth-chromium
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Project:
blink
Visibility:
Public.

Description

Oilpan: move platform speech objects to the heap. With the Speech API now using Oilpan by default, follow up and also heap allocate the platform-level intermediary objects. R=tkent@chromium.org,haraken@chromium.org BUG=340522 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=176321

Patch Set 1 #

Patch Set 2 : Mixins by default #

Total comments: 8

Patch Set 3 : Trace SpeechRecognition's controller reference. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+141 lines, -105 lines) Patch
M Source/modules/speech/SpeechRecognition.h View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M Source/modules/speech/SpeechRecognition.cpp View 1 2 2 chunks +4 lines, -1 line 0 comments Download
M Source/modules/speech/SpeechSynthesis.h View 1 5 chunks +9 lines, -10 lines 0 comments Download
M Source/modules/speech/SpeechSynthesis.cpp View 5 chunks +11 lines, -9 lines 0 comments Download
M Source/modules/speech/SpeechSynthesisUtterance.h View 1 2 chunks +3 lines, -3 lines 0 comments Download
M Source/modules/speech/SpeechSynthesisUtterance.cpp View 2 chunks +1 line, -1 line 0 comments Download
M Source/modules/speech/SpeechSynthesisVoice.h View 2 chunks +5 lines, -7 lines 0 comments Download
M Source/modules/speech/SpeechSynthesisVoice.cpp View 1 chunk +7 lines, -2 lines 0 comments Download
M Source/modules/speech/testing/PlatformSpeechSynthesizerMock.h View 2 chunks +6 lines, -4 lines 0 comments Download
M Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp View 3 chunks +9 lines, -4 lines 0 comments Download
M Source/platform/exported/WebSpeechSynthesisUtterance.cpp View 2 chunks +1 line, -6 lines 0 comments Download
M Source/platform/exported/WebSpeechSynthesisVoice.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/platform/exported/WebSpeechSynthesizerClientImpl.h View 1 2 2 chunks +7 lines, -6 lines 0 comments Download
M Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp View 2 chunks +8 lines, -2 lines 0 comments Download
M Source/platform/speech/PlatformSpeechSynthesisUtterance.h View 3 chunks +9 lines, -9 lines 0 comments Download
M Source/platform/speech/PlatformSpeechSynthesisUtterance.cpp View 2 chunks +8 lines, -2 lines 0 comments Download
M Source/platform/speech/PlatformSpeechSynthesisVoice.h View 2 chunks +6 lines, -5 lines 0 comments Download
M Source/platform/speech/PlatformSpeechSynthesisVoice.cpp View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/platform/speech/PlatformSpeechSynthesizer.h View 2 chunks +24 lines, -17 lines 0 comments Download
M Source/platform/speech/PlatformSpeechSynthesizer.cpp View 3 chunks +14 lines, -7 lines 0 comments Download
M public/platform/WebSpeechSynthesisUtterance.h View 1 chunk +1 line, -2 lines 0 comments Download
M public/platform/WebSpeechSynthesisVoice.h View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 17 (0 generated)
sof
Please take a look. With the Speech API now settled with Oilpan enabled, follow up ...
6 years, 6 months ago (2014-06-17 08:47:31 UTC) #1
tkent
lgtm
6 years, 6 months ago (2014-06-17 09:06:35 UTC) #2
haraken
LGTM https://codereview.chromium.org/339823003/diff/20001/Source/modules/speech/SpeechRecognition.h File Source/modules/speech/SpeechRecognition.h (right): https://codereview.chromium.org/339823003/diff/20001/Source/modules/speech/SpeechRecognition.h#newcode113 Source/modules/speech/SpeechRecognition.h:113: SpeechRecognitionController* m_controller; SpeechRecognitionController is on-heap, so can we ...
6 years, 6 months ago (2014-06-17 09:18:50 UTC) #3
sof
https://codereview.chromium.org/339823003/diff/20001/Source/modules/speech/SpeechRecognition.h File Source/modules/speech/SpeechRecognition.h (right): https://codereview.chromium.org/339823003/diff/20001/Source/modules/speech/SpeechRecognition.h#newcode113 Source/modules/speech/SpeechRecognition.h:113: SpeechRecognitionController* m_controller; On 2014/06/17 09:18:50, haraken wrote: > > ...
6 years, 6 months ago (2014-06-17 09:26:08 UTC) #4
haraken
https://codereview.chromium.org/339823003/diff/20001/Source/modules/speech/SpeechSynthesis.h File Source/modules/speech/SpeechSynthesis.h (left): https://codereview.chromium.org/339823003/diff/20001/Source/modules/speech/SpeechSynthesis.h#oldcode46 Source/modules/speech/SpeechSynthesis.h:46: WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SpeechSynthesis); On 2014/06/17 09:26:08, sof wrote: > On 2014/06/17 ...
6 years, 6 months ago (2014-06-17 09:30:23 UTC) #5
sof
https://codereview.chromium.org/339823003/diff/20001/Source/modules/speech/SpeechRecognition.h File Source/modules/speech/SpeechRecognition.h (right): https://codereview.chromium.org/339823003/diff/20001/Source/modules/speech/SpeechRecognition.h#newcode113 Source/modules/speech/SpeechRecognition.h:113: SpeechRecognitionController* m_controller; On 2014/06/17 09:26:07, sof wrote: > On ...
6 years, 6 months ago (2014-06-17 10:42:09 UTC) #6
sof
The CQ bit was checked by sigbjornf@opera.com
6 years, 6 months ago (2014-06-17 10:42:35 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sigbjornf@opera.com/339823003/40001
6 years, 6 months ago (2014-06-17 10:43:45 UTC) #8
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-17 12:39:09 UTC) #9
commit-bot: I haz the power
Try jobs failed on following builders: win_gpu_triggered_tests on tryserver.chromium.gpu (http://build.chromium.org/p/tryserver.chromium.gpu/builders/win_gpu_triggered_tests/builds/18051)
6 years, 6 months ago (2014-06-17 12:39:10 UTC) #10
sof
The CQ bit was checked by sigbjornf@opera.com
6 years, 6 months ago (2014-06-17 12:40:11 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sigbjornf@opera.com/339823003/40001
6 years, 6 months ago (2014-06-17 12:41:10 UTC) #12
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-17 14:34:28 UTC) #13
commit-bot: I haz the power
Try jobs failed on following builders: win_gpu_triggered_tests on tryserver.chromium.gpu (http://build.chromium.org/p/tryserver.chromium.gpu/builders/win_gpu_triggered_tests/builds/18073)
6 years, 6 months ago (2014-06-17 14:34:28 UTC) #14
sof
The CQ bit was checked by sigbjornf@opera.com
6 years, 6 months ago (2014-06-17 14:35:41 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sigbjornf@opera.com/339823003/40001
6 years, 6 months ago (2014-06-17 14:35:55 UTC) #16
commit-bot: I haz the power
6 years, 6 months ago (2014-06-17 15:34:43 UTC) #17
Message was sent while issue was closed.
Change committed as 176321

Powered by Google App Engine
This is Rietveld 408576698