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

Unified Diff: third_party/WebKit/public/web/WebFrameClient.h

Issue 1735033004: Bindings and client interface for the IsAppInstalled API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: third_party/WebKit/public/web/WebFrameClient.h
diff --git a/third_party/WebKit/public/web/WebFrameClient.h b/third_party/WebKit/public/web/WebFrameClient.h
index e0578dc5fb4b828bc759731c50267e2ef041a896..7d093fd8ccc538cb86b32d4935f9a54047ddc630 100644
--- a/third_party/WebKit/public/web/WebFrameClient.h
+++ b/third_party/WebKit/public/web/WebFrameClient.h
@@ -75,6 +75,7 @@ class WebExternalPopupMenu;
class WebExternalPopupMenuClient;
class WebFormElement;
class WebGeolocationClient;
+class WebInstalledApp;
class WebMediaPlayerClient;
class WebMediaPlayerEncryptedMediaClient;
class WebMediaSession;
@@ -356,6 +357,10 @@ public:
// Used to access the embedder for the Presentation API.
virtual WebPresentationClient* presentationClient() { return 0; }
+ // InstalledApp API ----------------------------------------------------
+
+ // Used to access the embedder for the InstalledApp API.
+ virtual WebInstalledApp* installedAppClient() { return nullptr; }
dcheng 2016/03/01 20:03:03 This should be named WebInstalledAppClient.
Daniel Nishi 2016/03/01 20:46:20 Done.
// Editing -------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698