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

Side by Side Diff: chrome/browser/extensions/extension_history_api.cc

Issue 3091005: Rename GetStringAsUTF16() to GetString() (and overload), etc. (Closed)
Patch Set: Created 10 years, 4 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome/browser/extensions/extension_history_api.h" 5 #include "chrome/browser/extensions/extension_history_api.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/json/json_writer.h" 8 #include "base/json/json_writer.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "base/string_number_conversions.h" 10 #include "base/string_number_conversions.h"
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 result_.reset(list); 241 result_.reset(list);
242 SendAsyncResponse(); 242 SendAsyncResponse();
243 } 243 }
244 244
245 bool SearchHistoryFunction::RunAsyncImpl() { 245 bool SearchHistoryFunction::RunAsyncImpl() {
246 DictionaryValue* json; 246 DictionaryValue* json;
247 EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &json)); 247 EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &json));
248 248
249 // Initialize the HistoryQuery 249 // Initialize the HistoryQuery
250 string16 search_text; 250 string16 search_text;
251 EXTENSION_FUNCTION_VALIDATE(json->GetStringAsUTF16(keys::kTextKey, 251 EXTENSION_FUNCTION_VALIDATE(json->GetString(keys::kTextKey, &search_text));
252 &search_text));
253 252
254 history::QueryOptions options; 253 history::QueryOptions options;
255 options.SetRecentDayRange(1); 254 options.SetRecentDayRange(1);
256 options.max_count = 100; 255 options.max_count = 100;
257 256
258 if (json->HasKey(keys::kStartTimeKey)) { // Optional. 257 if (json->HasKey(keys::kStartTimeKey)) { // Optional.
259 Value* value; 258 Value* value;
260 EXTENSION_FUNCTION_VALIDATE(json->Get(keys::kStartTimeKey, &value)); 259 EXTENSION_FUNCTION_VALIDATE(json->Get(keys::kStartTimeKey, &value));
261 EXTENSION_FUNCTION_VALIDATE(GetTimeFromValue(value, &options.begin_time)); 260 EXTENSION_FUNCTION_VALIDATE(GetTimeFromValue(value, &options.begin_time));
262 } 261 }
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 base::Time::Now(), // To the current time. 366 base::Time::Now(), // To the current time.
368 &cancelable_consumer_, 367 &cancelable_consumer_,
369 NewCallback(this, &DeleteAllHistoryFunction::DeleteComplete)); 368 NewCallback(this, &DeleteAllHistoryFunction::DeleteComplete));
370 369
371 return true; 370 return true;
372 } 371 }
373 372
374 void DeleteAllHistoryFunction::DeleteComplete() { 373 void DeleteAllHistoryFunction::DeleteComplete() {
375 SendAsyncResponse(); 374 SendAsyncResponse();
376 } 375 }
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/net_internals_ui.cc ('k') | chrome/browser/extensions/extension_history_api_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698