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

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

Issue 2127403002: Make browsing_data component a layered component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed output_name from components/browsing_data/content/BUILD.gn Created 4 years, 5 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 // Defines the Chrome Extensions BrowsingData API functions, which entail 5 // Defines the Chrome Extensions BrowsingData API functions, which entail
6 // clearing browsing data, and clearing the browser's cache (which, let's be 6 // clearing browsing data, and clearing the browser's cache (which, let's be
7 // honest, are the same thing), as specified in the extension API JSON. 7 // honest, are the same thing), as specified in the extension API JSON.
8 8
9 #include "chrome/browser/extensions/api/browsing_data/browsing_data_api.h" 9 #include "chrome/browser/extensions/api/browsing_data/browsing_data_api.h"
10 10
11 #include <string> 11 #include <string>
12 #include <utility> 12 #include <utility>
13 13
14 #include "base/strings/stringprintf.h" 14 #include "base/strings/stringprintf.h"
15 #include "base/values.h" 15 #include "base/values.h"
16 #include "chrome/browser/browsing_data/browsing_data_helper.h" 16 #include "chrome/browser/browsing_data/browsing_data_helper.h"
17 #include "chrome/browser/browsing_data/browsing_data_remover.h" 17 #include "chrome/browser/browsing_data/browsing_data_remover.h"
18 #include "chrome/browser/browsing_data/browsing_data_remover_factory.h" 18 #include "chrome/browser/browsing_data/browsing_data_remover_factory.h"
19 #include "chrome/browser/plugins/plugin_data_remover_helper.h" 19 #include "chrome/browser/plugins/plugin_data_remover_helper.h"
20 #include "chrome/browser/plugins/plugin_prefs.h" 20 #include "chrome/browser/plugins/plugin_prefs.h"
21 #include "chrome/browser/profiles/profile.h" 21 #include "chrome/browser/profiles/profile.h"
22 #include "chrome/browser/ui/browser.h" 22 #include "chrome/browser/ui/browser.h"
23 #include "chrome/common/pref_names.h" 23 #include "chrome/common/pref_names.h"
24 #include "components/browsing_data/pref_names.h" 24 #include "components/browsing_data/core/pref_names.h"
25 #include "content/public/browser/browser_thread.h" 25 #include "content/public/browser/browser_thread.h"
26 #include "extensions/common/error_utils.h" 26 #include "extensions/common/error_utils.h"
27 #include "extensions/common/extension.h" 27 #include "extensions/common/extension.h"
28 28
29 using content::BrowserThread; 29 using content::BrowserThread;
30 30
31 namespace extension_browsing_data_api_constants { 31 namespace extension_browsing_data_api_constants {
32 32
33 // Parameter name keys. 33 // Parameter name keys.
34 const char kDataRemovalPermittedKey[] = "dataRemovalPermitted"; 34 const char kDataRemovalPermittedKey[] = "dataRemovalPermitted";
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 return BrowsingDataRemover::REMOVE_SERVICE_WORKERS; 451 return BrowsingDataRemover::REMOVE_SERVICE_WORKERS;
452 } 452 }
453 453
454 int BrowsingDataRemoveCacheStorageFunction::GetRemovalMask() { 454 int BrowsingDataRemoveCacheStorageFunction::GetRemovalMask() {
455 return BrowsingDataRemover::REMOVE_CACHE_STORAGE; 455 return BrowsingDataRemover::REMOVE_CACHE_STORAGE;
456 } 456 }
457 457
458 int BrowsingDataRemoveWebSQLFunction::GetRemovalMask() { 458 int BrowsingDataRemoveWebSQLFunction::GetRemovalMask() {
459 return BrowsingDataRemover::REMOVE_WEBSQL; 459 return BrowsingDataRemover::REMOVE_WEBSQL;
460 } 460 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698