| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SEARCH_SUGGESTIONS_SUGGESTIONS_SOURCE_H_ | 5 #ifndef CHROME_BROWSER_SEARCH_SUGGESTIONS_SUGGESTIONS_SOURCE_H_ |
| 6 #define CHROME_BROWSER_SEARCH_SUGGESTIONS_SUGGESTIONS_SOURCE_H_ | 6 #define CHROME_BROWSER_SEARCH_SUGGESTIONS_SUGGESTIONS_SOURCE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 explicit SuggestionsSource(Profile* profile); | 30 explicit SuggestionsSource(Profile* profile); |
| 31 | 31 |
| 32 // content::URLDataSource implementation. | 32 // content::URLDataSource implementation. |
| 33 virtual std::string GetSource() const OVERRIDE; | 33 virtual std::string GetSource() const OVERRIDE; |
| 34 virtual void StartDataRequest( | 34 virtual void StartDataRequest( |
| 35 const std::string& path, int render_process_id, int render_frame_id, | 35 const std::string& path, int render_process_id, int render_frame_id, |
| 36 const content::URLDataSource::GotDataCallback& callback) OVERRIDE; | 36 const content::URLDataSource::GotDataCallback& callback) OVERRIDE; |
| 37 virtual std::string GetMimeType(const std::string& path) const OVERRIDE; | 37 virtual std::string GetMimeType(const std::string& path) const OVERRIDE; |
| 38 virtual base::MessageLoop* MessageLoopForRequestPath( | 38 virtual base::MessageLoop* MessageLoopForRequestPath( |
| 39 const std::string& path) const OVERRIDE; | 39 const std::string& path) const OVERRIDE; |
| 40 virtual bool ShouldServiceRequest( | |
| 41 const net::URLRequest* request) const OVERRIDE; | |
| 42 | 40 |
| 43 private: | 41 private: |
| 44 virtual ~SuggestionsSource(); | 42 virtual ~SuggestionsSource(); |
| 45 | 43 |
| 46 // Container for the state of a request. | 44 // Container for the state of a request. |
| 47 struct RequestContext { | 45 struct RequestContext { |
| 48 RequestContext( | 46 RequestContext( |
| 49 const suggestions::SuggestionsProfile& suggestions_profile_in, | 47 const suggestions::SuggestionsProfile& suggestions_profile_in, |
| 50 const content::URLDataSource::GotDataCallback& callback_in); | 48 const content::URLDataSource::GotDataCallback& callback_in); |
| 51 ~RequestContext(); | 49 ~RequestContext(); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 73 | 71 |
| 74 // For callbacks may be run after destruction. | 72 // For callbacks may be run after destruction. |
| 75 base::WeakPtrFactory<SuggestionsSource> weak_ptr_factory_; | 73 base::WeakPtrFactory<SuggestionsSource> weak_ptr_factory_; |
| 76 | 74 |
| 77 DISALLOW_COPY_AND_ASSIGN(SuggestionsSource); | 75 DISALLOW_COPY_AND_ASSIGN(SuggestionsSource); |
| 78 }; | 76 }; |
| 79 | 77 |
| 80 } // namespace suggestions | 78 } // namespace suggestions |
| 81 | 79 |
| 82 #endif // CHROME_BROWSER_SEARCH_SUGGESTIONS_SUGGESTIONS_SOURCE_H_ | 80 #endif // CHROME_BROWSER_SEARCH_SUGGESTIONS_SUGGESTIONS_SOURCE_H_ |
| OLD | NEW |