Chromium Code Reviews| 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 ------------------------------------------------------------- |