OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_HOST_IMPL_H_ | 5 #ifndef CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_HOST_IMPL_H_ |
6 #define CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_HOST_IMPL_H_ | 6 #define CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_HOST_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
16 #include "base/message_loop_helpers.h" | 16 #include "base/sequenced_task_runner_helpers.h" |
17 #include "chrome/browser/spellchecker/spellcheck_host.h" | 17 #include "chrome/browser/spellchecker/spellcheck_host.h" |
18 #include "chrome/browser/spellchecker/spellcheck_profile_provider.h" | 18 #include "chrome/browser/spellchecker/spellcheck_profile_provider.h" |
19 #include "content/public/browser/notification_observer.h" | 19 #include "content/public/browser/notification_observer.h" |
20 #include "content/public/browser/notification_registrar.h" | 20 #include "content/public/browser/notification_registrar.h" |
21 #include "net/url_request/url_fetcher_delegate.h" | 21 #include "net/url_request/url_fetcher_delegate.h" |
22 | 22 |
23 namespace net { | 23 namespace net { |
24 class URLFetcher; | 24 class URLFetcher; |
25 } // namespace net | 25 } // namespace net |
26 | 26 |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 SpellCheckHostMetrics* metrics_; | 171 SpellCheckHostMetrics* metrics_; |
172 | 172 |
173 base::WeakPtrFactory<SpellCheckHostImpl> weak_ptr_factory_; | 173 base::WeakPtrFactory<SpellCheckHostImpl> weak_ptr_factory_; |
174 | 174 |
175 scoped_ptr<CustomWordList> custom_words_; | 175 scoped_ptr<CustomWordList> custom_words_; |
176 | 176 |
177 DISALLOW_COPY_AND_ASSIGN(SpellCheckHostImpl); | 177 DISALLOW_COPY_AND_ASSIGN(SpellCheckHostImpl); |
178 }; | 178 }; |
179 | 179 |
180 #endif // CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_HOST_IMPL_H_ | 180 #endif // CHROME_BROWSER_SPELLCHECKER_SPELLCHECK_HOST_IMPL_H_ |
OLD | NEW |