1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_EXTENSIONS_DATA_DELETER_H_
6 #define CHROME_BROWSER_EXTENSIONS_DATA_DELETER_H_
9 #include "base/basictypes.h"
10 #include "base/callback_forward.h"
14 namespace extensions
{
20 // Starts removing data. The extension should not be running when this is
21 // called. Cookies are deleted on the current thread, local storage and
22 // databases/settings are deleted asynchronously on the webkit and file
23 // threads, respectively. This function must be called from the UI thread.
25 // |callback| is called when data deletion is done or at least the deletion
27 static void StartDeleting(Profile
* profile
,
28 const Extension
* extenion
,
29 const base::Closure
& callback
);
31 DISALLOW_COPY_AND_ASSIGN(DataDeleter
);
34 } // namespace extensions
36 #endif // CHROME_BROWSER_EXTENSIONS_DATA_DELETER_H_