Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: chrome/browser/spellchecker/spelling_service_client.h

Issue 1117703002: Adjust URLFetcher::Create API so that object is returned as scoped_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unneeded Pass() calls Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_SPELLING_SERVICE_CLIENT_H_ 5 #ifndef CHROME_BROWSER_SPELLCHECKER_SPELLING_SERVICE_CLIENT_H_
6 #define CHROME_BROWSER_SPELLCHECKER_SPELLING_SERVICE_CLIENT_H_ 6 #define CHROME_BROWSER_SPELLCHECKER_SPELLING_SERVICE_CLIENT_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 // The text checked by the Spelling service. 108 // The text checked by the Spelling service.
109 base::string16 text; 109 base::string16 text;
110 }; 110 };
111 111
112 // net::URLFetcherDelegate implementation. 112 // net::URLFetcherDelegate implementation.
113 void OnURLFetchComplete(const net::URLFetcher* source) override; 113 void OnURLFetchComplete(const net::URLFetcher* source) override;
114 114
115 // Creates a URLFetcher object used for sending a JSON-RPC request. This 115 // Creates a URLFetcher object used for sending a JSON-RPC request. This
116 // function is overridden by unit tests to prevent them from actually sending 116 // function is overridden by unit tests to prevent them from actually sending
117 // requests to the Spelling service. 117 // requests to the Spelling service.
118 virtual net::URLFetcher* CreateURLFetcher(const GURL& url); 118 virtual scoped_ptr<net::URLFetcher> CreateURLFetcher(const GURL& url);
119 119
120 // The URLFetcher object used for sending a JSON-RPC request. 120 // The URLFetcher object used for sending a JSON-RPC request.
121 std::map<const net::URLFetcher*, TextCheckCallbackData*> spellcheck_fetchers_; 121 std::map<const net::URLFetcher*, TextCheckCallbackData*> spellcheck_fetchers_;
122 }; 122 };
123 123
124 #endif // CHROME_BROWSER_SPELLCHECKER_SPELLING_SERVICE_CLIENT_H_ 124 #endif // CHROME_BROWSER_SPELLCHECKER_SPELLING_SERVICE_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc ('k') | chrome/browser/spellchecker/spelling_service_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698