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

Unified Diff: net/base/sdch_dictionary_fetcher_unittest.cc

Issue 423813002: Sdch view for net-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Declare SdchProblemCode Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: net/base/sdch_dictionary_fetcher_unittest.cc
diff --git a/net/base/sdch_dictionary_fetcher_unittest.cc b/net/base/sdch_dictionary_fetcher_unittest.cc
index af666813711e827267e172052f35919b4e207d8b..6245f00ec414c6b67e0cc66decd33b17d4550765 100644
--- a/net/base/sdch_dictionary_fetcher_unittest.cc
+++ b/net/base/sdch_dictionary_fetcher_unittest.cc
@@ -86,10 +86,11 @@ class SdchTestDelegate : public SdchFetcher::Delegate {
GURL dictionary_url;
};
- void AddSdchDictionary(const std::string& dictionary_text,
- const GURL& dictionary_url) override {
+ SdchProblemCode AddSdchDictionary(const std::string& dictionary_text,
+ const GURL& dictionary_url) override {
dictionary_additions.push_back(
DictionaryAdditions(dictionary_text, dictionary_url));
+ return SDCH_OK;
}
void GetDictionaryAdditions(std::vector<DictionaryAdditions>* out) {

Powered by Google App Engine
This is Rietveld 408576698