| Index: chrome/browser/profiles/profile.h
|
| diff --git a/chrome/browser/profiles/profile.h b/chrome/browser/profiles/profile.h
|
| index a223ef403244d097b0b6b28380865a82497d933e..b2026ada0bcea7f569cdf41ae5319532a2373e04 100644
|
| --- a/chrome/browser/profiles/profile.h
|
| +++ b/chrome/browser/profiles/profile.h
|
| @@ -16,6 +16,7 @@
|
|
|
| namespace base {
|
| class Time;
|
| +class WaitableEvent;
|
| }
|
|
|
| namespace content {
|
| @@ -515,6 +516,11 @@ class Profile {
|
| // profile.
|
| virtual prerender::PrerenderManager* GetPrerenderManager() = 0;
|
|
|
| + // Clears the app cache (if the profile settings to dictate), returns a
|
| + // WaitableEvent for signalling when the clearing is complete, or NULL if
|
| + // there is nothing to clear. The WaitableEvent is not owned by the caller.
|
| + virtual base::WaitableEvent* ClearAppCache();
|
| +
|
| std::string GetDebugName();
|
|
|
| // Returns whether it is a guest session.
|
|
|