| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * * Redistributions of source code must retain the above copyright | 7 * * Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * * Redistributions in binary form must reproduce the above copyright | 9 * * Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "modules/speech/SpeechRecognition.h" | 28 #include "modules/speech/SpeechRecognition.h" |
| 29 | 29 |
| 30 #include "bindings/core/v8/ExceptionState.h" | 30 #include "bindings/core/v8/ExceptionState.h" |
| 31 #include "core/dom/Document.h" | 31 #include "core/dom/Document.h" |
| 32 #include "core/dom/ExceptionCode.h" | 32 #include "core/dom/ExceptionCode.h" |
| 33 #include "core/page/Page.h" | 33 #include "core/page/Page.h" |
| 34 #include "modules/speech/SpeechRecognitionController.h" | 34 #include "modules/speech/SpeechRecognitionController.h" |
| 35 #include "modules/speech/SpeechRecognitionError.h" | 35 #include "modules/speech/SpeechRecognitionError.h" |
| 36 #include "modules/speech/SpeechRecognitionEvent.h" | 36 #include "modules/speech/SpeechRecognitionEvent.h" |
| 37 | 37 |
| 38 namespace WebCore { | 38 namespace blink { |
| 39 | 39 |
| 40 SpeechRecognition* SpeechRecognition::create(ExecutionContext* context) | 40 SpeechRecognition* SpeechRecognition::create(ExecutionContext* context) |
| 41 { | 41 { |
| 42 SpeechRecognition* speechRecognition = adoptRefCountedGarbageCollectedWillBe
Noop(new SpeechRecognition(context)); | 42 SpeechRecognition* speechRecognition = adoptRefCountedGarbageCollectedWillBe
Noop(new SpeechRecognition(context)); |
| 43 speechRecognition->suspendIfNeeded(); | 43 speechRecognition->suspendIfNeeded(); |
| 44 return speechRecognition; | 44 return speechRecognition; |
| 45 } | 45 } |
| 46 | 46 |
| 47 void SpeechRecognition::start(ExceptionState& exceptionState) | 47 void SpeechRecognition::start(ExceptionState& exceptionState) |
| 48 { | 48 { |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 void SpeechRecognition::trace(Visitor* visitor) | 195 void SpeechRecognition::trace(Visitor* visitor) |
| 196 { | 196 { |
| 197 visitor->trace(m_grammars); | 197 visitor->trace(m_grammars); |
| 198 #if ENABLE(OILPAN) | 198 #if ENABLE(OILPAN) |
| 199 visitor->trace(m_controller); | 199 visitor->trace(m_controller); |
| 200 #endif | 200 #endif |
| 201 visitor->trace(m_finalResults); | 201 visitor->trace(m_finalResults); |
| 202 EventTargetWithInlineData::trace(visitor); | 202 EventTargetWithInlineData::trace(visitor); |
| 203 } | 203 } |
| 204 | 204 |
| 205 } // namespace WebCore | 205 } // namespace blink |
| OLD | NEW |