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

Side by Side Diff: third_party/WebKit/public/web/WebFrameClient.h

Issue 1808203005: [OnionSoup] Moving VR service from content to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reworked as per new comments. Fixed build errors! Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 class WebSocketHandle; 91 class WebSocketHandle;
92 class WebPlugin; 92 class WebPlugin;
93 class WebPresentationClient; 93 class WebPresentationClient;
94 class WebPushClient; 94 class WebPushClient;
95 class WebRTCPeerConnectionHandler; 95 class WebRTCPeerConnectionHandler;
96 class WebScreenOrientationClient; 96 class WebScreenOrientationClient;
97 class WebString; 97 class WebString;
98 class WebURL; 98 class WebURL;
99 class WebURLResponse; 99 class WebURLResponse;
100 class WebUserMediaClient; 100 class WebUserMediaClient;
101 class WebVRClient;
102 class WebWorkerContentSettingsClientProxy; 101 class WebWorkerContentSettingsClientProxy;
103 struct WebColorSuggestion; 102 struct WebColorSuggestion;
104 struct WebConsoleMessage; 103 struct WebConsoleMessage;
105 struct WebContextMenuData; 104 struct WebContextMenuData;
106 struct WebPluginParams; 105 struct WebPluginParams;
107 struct WebPopupMenuInfo; 106 struct WebPopupMenuInfo;
108 struct WebRect; 107 struct WebRect;
109 struct WebURLError; 108 struct WebURLError;
110 109
111 class WebFrameClient { 110 class WebFrameClient {
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 UnloadHandler, 674 UnloadHandler,
676 }; 675 };
677 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { } 676 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { }
678 677
679 678
680 // Permissions --------------------------------------------------------- 679 // Permissions ---------------------------------------------------------
681 680
682 // Access the embedder API for permission client. 681 // Access the embedder API for permission client.
683 virtual WebPermissionClient* permissionClient() { return 0; } 682 virtual WebPermissionClient* permissionClient() { return 0; }
684 683
685 // Virtual Reality -----------------------------------------------------
686
687 // Access the embedder API for virtual reality client.
688 virtual WebVRClient* webVRClient() { return 0; }
689
690 // App Banners --------------------------------------------------------- 684 // App Banners ---------------------------------------------------------
691 virtual WebAppBannerClient* appBannerClient() { return 0; } 685 virtual WebAppBannerClient* appBannerClient() { return 0; }
692 686
693 // Navigator Content Utils -------------------------------------------- 687 // Navigator Content Utils --------------------------------------------
694 688
695 // Registers a new URL handler for the given protocol. 689 // Registers a new URL handler for the given protocol.
696 virtual void registerProtocolHandler(const WebString& scheme, 690 virtual void registerProtocolHandler(const WebString& scheme,
697 const WebURL& url, 691 const WebURL& url,
698 const WebString& title) { } 692 const WebString& title) { }
699 693
(...skipping 25 matching lines...) Expand all
725 // Mojo ---------------------------------------------------------------- 719 // Mojo ----------------------------------------------------------------
726 virtual ServiceRegistry* serviceRegistry() { return nullptr; } 720 virtual ServiceRegistry* serviceRegistry() { return nullptr; }
727 721
728 protected: 722 protected:
729 virtual ~WebFrameClient() { } 723 virtual ~WebFrameClient() { }
730 }; 724 };
731 725
732 } // namespace blink 726 } // namespace blink
733 727
734 #endif 728 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698