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

Unified Diff: ios/web_view/internal/cwv_website_data_store.mm

Issue 2710683007: Rename CRIWVBrowserState to CWVBrowserState. (Closed)
Patch Set: Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/web_view/internal/cwv_web_view.mm ('k') | ios/web_view/internal/cwv_website_data_store_internal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « ios/web_view/internal/cwv_web_view.mm ('k') | ios/web_view/internal/cwv_website_data_store_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698