| Index: third_party/WebKit/Source/web/StorageClientImpl.h
|
| diff --git a/third_party/WebKit/Source/web/StorageClientImpl.h b/third_party/WebKit/Source/web/StorageClientImpl.h
|
| index 548573b95107eb216a83839726dc3ad96cfd67c5..f65cbeca9d86b8bb0e00fe4a2612e918e2c48313 100644
|
| --- a/third_party/WebKit/Source/web/StorageClientImpl.h
|
| +++ b/third_party/WebKit/Source/web/StorageClientImpl.h
|
| @@ -10,17 +10,17 @@
|
|
|
| namespace blink {
|
|
|
| -class WebViewImpl;
|
| +class WebViewBase;
|
|
|
| class StorageClientImpl : public StorageClient {
|
| public:
|
| - explicit StorageClientImpl(WebViewImpl*);
|
| + explicit StorageClientImpl(WebViewBase*);
|
|
|
| std::unique_ptr<StorageNamespace> CreateSessionStorageNamespace() override;
|
| bool CanAccessStorage(LocalFrame*, StorageType) const override;
|
|
|
| private:
|
| - WebViewImpl* web_view_;
|
| + WebViewBase* web_view_;
|
| };
|
|
|
| } // namespace blink
|
|
|