| 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/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 DEFINE_GC_INFO(SpeechGrammar); | 34 DEFINE_GC_INFO(SpeechGrammar); |
| 35 | 35 |
| 36 PassRefPtrWillBeRawPtr<SpeechGrammar> SpeechGrammar::create() | 36 PassRefPtrWillBeRawPtr<SpeechGrammar> SpeechGrammar::create() |
| 37 { | 37 { |
| 38 return adoptRefCountedWillBeRefCountedGarbageCollected(new SpeechGrammar); | 38 return adoptRefWillBeNoop(new SpeechGrammar); |
| 39 } | 39 } |
| 40 | 40 |
| 41 PassRefPtrWillBeRawPtr<SpeechGrammar> SpeechGrammar::create(const KURL& src, dou
ble weight) | 41 PassRefPtrWillBeRawPtr<SpeechGrammar> SpeechGrammar::create(const KURL& src, dou
ble weight) |
| 42 { | 42 { |
| 43 return adoptRefCountedWillBeRefCountedGarbageCollected(new SpeechGrammar(src
, weight)); | 43 return adoptRefWillBeNoop(new SpeechGrammar(src, weight)); |
| 44 } | 44 } |
| 45 | 45 |
| 46 void SpeechGrammar::setSrc(ExecutionContext* executionContext, const String& src
) | 46 void SpeechGrammar::setSrc(ExecutionContext* executionContext, const String& src
) |
| 47 { | 47 { |
| 48 Document* document = toDocument(executionContext); | 48 Document* document = toDocument(executionContext); |
| 49 m_src = document->completeURL(src); | 49 m_src = document->completeURL(src); |
| 50 } | 50 } |
| 51 | 51 |
| 52 SpeechGrammar::SpeechGrammar() | 52 SpeechGrammar::SpeechGrammar() |
| 53 : m_weight(1.0) | 53 : m_weight(1.0) |
| 54 { | 54 { |
| 55 ScriptWrappable::init(this); | 55 ScriptWrappable::init(this); |
| 56 } | 56 } |
| 57 | 57 |
| 58 SpeechGrammar::SpeechGrammar(const KURL& src, double weight) | 58 SpeechGrammar::SpeechGrammar(const KURL& src, double weight) |
| 59 : m_src(src) | 59 : m_src(src) |
| 60 , m_weight(weight) | 60 , m_weight(weight) |
| 61 { | 61 { |
| 62 ScriptWrappable::init(this); | 62 ScriptWrappable::init(this); |
| 63 } | 63 } |
| 64 | 64 |
| 65 } // namespace WebCore | 65 } // namespace WebCore |
| OLD | NEW |