| 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 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 | 27 |
| 28 #include "modules/speech/SpeechGrammar.h" | 28 #include "modules/speech/SpeechGrammar.h" |
| 29 | 29 |
| 30 #include "core/dom/Document.h" | 30 #include "core/dom/Document.h" |
| 31 | 31 |
| 32 namespace WebCore { | 32 namespace WebCore { |
| 33 | 33 |
| 34 PassRefPtr<SpeechGrammar> SpeechGrammar::create() | 34 DEFINE_GC_INFO(SpeechGrammar); |
| 35 |
| 36 PassRefPtrWillBeRawPtr<SpeechGrammar> SpeechGrammar::create() |
| 35 { | 37 { |
| 36 return adoptRef(new SpeechGrammar); | 38 return adoptRefWillBeNoop(new SpeechGrammar); |
| 37 } | 39 } |
| 38 | 40 |
| 39 PassRefPtr<SpeechGrammar> SpeechGrammar::create(const KURL& src, double weight) | 41 PassRefPtrWillBeRawPtr<SpeechGrammar> SpeechGrammar::create(const KURL& src, dou
ble weight) |
| 40 { | 42 { |
| 41 return adoptRef(new SpeechGrammar(src, weight)); | 43 return adoptRefWillBeNoop(new SpeechGrammar(src, weight)); |
| 42 } | 44 } |
| 43 | 45 |
| 44 void SpeechGrammar::setSrc(ExecutionContext* executionContext, const String& src
) | 46 void SpeechGrammar::setSrc(ExecutionContext* executionContext, const String& src
) |
| 45 { | 47 { |
| 46 Document* document = toDocument(executionContext); | 48 Document* document = toDocument(executionContext); |
| 47 m_src = document->completeURL(src); | 49 m_src = document->completeURL(src); |
| 48 } | 50 } |
| 49 | 51 |
| 50 SpeechGrammar::SpeechGrammar() | 52 SpeechGrammar::SpeechGrammar() |
| 51 : m_weight(1.0) | 53 : m_weight(1.0) |
| 52 { | 54 { |
| 53 ScriptWrappable::init(this); | 55 ScriptWrappable::init(this); |
| 54 } | 56 } |
| 55 | 57 |
| 56 SpeechGrammar::SpeechGrammar(const KURL& src, double weight) | 58 SpeechGrammar::SpeechGrammar(const KURL& src, double weight) |
| 57 : m_src(src) | 59 : m_src(src) |
| 58 , m_weight(weight) | 60 , m_weight(weight) |
| 59 { | 61 { |
| 60 ScriptWrappable::init(this); | 62 ScriptWrappable::init(this); |
| 61 } | 63 } |
| 62 | 64 |
| 63 } // namespace WebCore | 65 } // namespace WebCore |
| OLD | NEW |