| Index: ios/web_view/internal/cwv_website_data_store.mm
|
| diff --git a/ios/web_view/internal/cwv_website_data_store.mm b/ios/web_view/internal/cwv_website_data_store.mm
|
| index 520da839af44cf27c5ce65cd59eb07047c2b17a6..071acb9ad808a2ade75cc94268e457b689c54edc 100644
|
| --- a/ios/web_view/internal/cwv_website_data_store.mm
|
| +++ b/ios/web_view/internal/cwv_website_data_store.mm
|
| @@ -6,8 +6,8 @@
|
|
|
| #include <memory.h>
|
|
|
| -#include "ios/web_view/internal/criwv_browser_state.h"
|
| #import "ios/web_view/internal/criwv_web_client.h"
|
| +#include "ios/web_view/internal/cwv_browser_state.h"
|
|
|
| #if !defined(__has_feature) || !__has_feature(objc_arc)
|
| #error "This file requires ARC support."
|
| @@ -15,18 +15,17 @@
|
|
|
| @implementation CWVWebsiteDataStore
|
| // TODO(crbug.com/690182): CWVWebsiteDataStore should own _browserState.
|
| -ios_web_view::CRIWVBrowserState* _browserState;
|
| +ios_web_view::CWVBrowserState* _browserState;
|
|
|
| - (BOOL)isPersistent {
|
| return !_browserState->IsOffTheRecord();
|
| }
|
|
|
| -- (ios_web_view::CRIWVBrowserState*)browserState {
|
| +- (ios_web_view::CWVBrowserState*)browserState {
|
| return _browserState;
|
| }
|
|
|
| -- (void)setBrowserState:
|
| - (ios_web_view::CRIWVBrowserState* _Nonnull)browserState {
|
| +- (void)setBrowserState:(ios_web_view::CWVBrowserState* _Nonnull)browserState {
|
| _browserState = browserState;
|
| }
|
|
|
|
|