| Index: chrome/browser/spellchecker/spellcheck_host.cc
|
| ===================================================================
|
| --- chrome/browser/spellchecker/spellcheck_host.cc (revision 108048)
|
| +++ chrome/browser/spellchecker/spellcheck_host.cc (working copy)
|
| @@ -23,15 +23,13 @@
|
| } // namespace
|
|
|
| // static
|
| -scoped_refptr<SpellCheckHost> SpellCheckHost::Create(
|
| +SpellCheckHost* SpellCheckHost::Create(
|
| SpellCheckProfileProvider* profile,
|
| const std::string& language,
|
| net::URLRequestContextGetter* request_context_getter,
|
| SpellCheckHostMetrics* metrics) {
|
| - scoped_refptr<SpellCheckHostImpl> host =
|
| - new SpellCheckHostImpl(profile,
|
| - language,
|
| - request_context_getter,
|
| + SpellCheckHostImpl* host =
|
| + new SpellCheckHostImpl(profile, language, request_context_getter,
|
| metrics);
|
| if (!host)
|
| return NULL;
|
|
|