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

Unified Diff: third_party/WebKit/Source/web/StorageClientImpl.h

Issue 2848513002: Introduce the abstract class WebViewBase, to decouple WebViewImpl. (Closed)
Patch Set: Fix typo. Created 3 years, 8 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
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
« no previous file with comments | « third_party/WebKit/Source/web/SpellCheckerClientImpl.cpp ('k') | third_party/WebKit/Source/web/StorageClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698