1 // Copyright 2015 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 IOS_WEB_PUBLIC_BROWSING_DATA_PARTITION_H_
6 #define IOS_WEB_PUBLIC_BROWSING_DATA_PARTITION_H_
8 #include "base/macros.h"
11 @
class CRWBrowsingDataStore
;
13 class CRWBrowsingDataStore
;
20 // Manages the browsing data associated with a particular BrowserState.
21 // Not thread safe. Must be used only on the main thread.
22 class BrowsingDataPartition
{
24 // Returns the underlying CRWBrowsingDataStore.
25 virtual CRWBrowsingDataStore
* GetBrowsingDataStore() = 0;
28 virtual ~BrowsingDataPartition(){};
33 #endif // IOS_WEB_PUBLIC_BROWSING_DATA_PARTITION_H_