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

Side by Side Diff: chrome/browser/extensions/api/browsing_data/browsing_data_test.cc

Issue 2511683002: Remove unneeded stringprintf.h usage in chrome/ and net/ (Closed)
Patch Set: rebase Created 4 years, 1 month 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 #include <memory> 5 #include <memory>
6 #include <string> 6 #include <string>
7 7
8 #include "base/json/json_string_value_serializer.h" 8 #include "base/json/json_string_value_serializer.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/strings/pattern.h" 10 #include "base/strings/pattern.h"
11 #include "base/strings/string_util.h" 11 #include "base/strings/string_util.h"
12 #include "base/strings/stringprintf.h"
13 #include "base/values.h" 12 #include "base/values.h"
14 #include "chrome/browser/browsing_data/browsing_data_helper.h" 13 #include "chrome/browser/browsing_data/browsing_data_helper.h"
15 #include "chrome/browser/browsing_data/browsing_data_remover.h" 14 #include "chrome/browser/browsing_data/browsing_data_remover.h"
16 #include "chrome/browser/browsing_data/browsing_data_remover_factory.h" 15 #include "chrome/browser/browsing_data/browsing_data_remover_factory.h"
17 #include "chrome/browser/extensions/api/browsing_data/browsing_data_api.h" 16 #include "chrome/browser/extensions/api/browsing_data/browsing_data_api.h"
18 #include "chrome/browser/extensions/extension_function_test_utils.h" 17 #include "chrome/browser/extensions/extension_function_test_utils.h"
19 #include "chrome/browser/profiles/profile.h" 18 #include "chrome/browser/profiles/profile.h"
20 #include "chrome/browser/ui/browser.h" 19 #include "chrome/browser/ui/browser.h"
21 #include "chrome/common/pref_names.h" 20 #include "chrome/common/pref_names.h"
22 #include "chrome/test/base/in_process_browser_test.h" 21 #include "chrome/test/base/in_process_browser_test.h"
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 529
531 SetPrefsAndVerifySettings( 530 SetPrefsAndVerifySettings(
532 BrowsingDataRemover::REMOVE_COOKIES | 531 BrowsingDataRemover::REMOVE_COOKIES |
533 BrowsingDataRemover::REMOVE_HISTORY | 532 BrowsingDataRemover::REMOVE_HISTORY |
534 BrowsingDataRemover::REMOVE_DOWNLOADS, 533 BrowsingDataRemover::REMOVE_DOWNLOADS,
535 UNPROTECTED_WEB, 534 UNPROTECTED_WEB,
536 site_data_no_plugins_durable_usage | 535 site_data_no_plugins_durable_usage |
537 BrowsingDataRemover::REMOVE_HISTORY | 536 BrowsingDataRemover::REMOVE_HISTORY |
538 BrowsingDataRemover::REMOVE_DOWNLOADS); 537 BrowsingDataRemover::REMOVE_DOWNLOADS);
539 } 538 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698