| Index: chrome/browser/search/suggestions/suggestions_source.h
|
| diff --git a/chrome/browser/search/suggestions/suggestions_source.h b/chrome/browser/search/suggestions/suggestions_source.h
|
| index a724abb7312322b415e9f252a56236e87540db04..eb31cb42c5eb6a9ee2da3f28ff80af7fb1632186 100644
|
| --- a/chrome/browser/search/suggestions/suggestions_source.h
|
| +++ b/chrome/browser/search/suggestions/suggestions_source.h
|
| @@ -30,16 +30,18 @@ class SuggestionsSource : public content::URLDataSource {
|
| explicit SuggestionsSource(Profile* profile);
|
|
|
| // content::URLDataSource implementation.
|
| - virtual std::string GetSource() const override;
|
| - virtual void StartDataRequest(
|
| - const std::string& path, int render_process_id, int render_frame_id,
|
| + std::string GetSource() const override;
|
| + void StartDataRequest(
|
| + const std::string& path,
|
| + int render_process_id,
|
| + int render_frame_id,
|
| const content::URLDataSource::GotDataCallback& callback) override;
|
| - virtual std::string GetMimeType(const std::string& path) const override;
|
| - virtual base::MessageLoop* MessageLoopForRequestPath(
|
| + std::string GetMimeType(const std::string& path) const override;
|
| + base::MessageLoop* MessageLoopForRequestPath(
|
| const std::string& path) const override;
|
|
|
| private:
|
| - virtual ~SuggestionsSource();
|
| + ~SuggestionsSource() override;
|
|
|
| // Container for the state of a request.
|
| struct RequestContext {
|
|
|