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..d1358cb61cbc4254bd18e980b969b5e61926ae76 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 0; } |
|
dcheng
2016/02/27 18:30:37
Nit: nullptr
Daniel Nishi
2016/02/29 18:38:39
Done.
|
| // Editing ------------------------------------------------------------- |