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

Side by Side Diff: public/platform/Platform.h

Issue 782463002: Expose navigator.connect client side API in blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: also expose to workers Created 6 years 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 class WebGeofencingProvider; 77 class WebGeofencingProvider;
78 class WebGestureCurve; 78 class WebGestureCurve;
79 class WebGraphicsContext3DProvider; 79 class WebGraphicsContext3DProvider;
80 class WebIDBFactory; 80 class WebIDBFactory;
81 class WebMIDIAccessor; 81 class WebMIDIAccessor;
82 class WebMIDIAccessorClient; 82 class WebMIDIAccessorClient;
83 class WebMediaStreamCenter; 83 class WebMediaStreamCenter;
84 class WebMediaStreamCenterClient; 84 class WebMediaStreamCenterClient;
85 class WebMessagePortChannel; 85 class WebMessagePortChannel;
86 class WebMimeRegistry; 86 class WebMimeRegistry;
87 class WebNavigatorConnectProvider;
87 class WebNotificationManager; 88 class WebNotificationManager;
88 class WebPluginListBuilder; 89 class WebPluginListBuilder;
89 class WebPrescientNetworking; 90 class WebPrescientNetworking;
90 class WebPublicSuffixList; 91 class WebPublicSuffixList;
91 class WebPushProvider; 92 class WebPushProvider;
92 class WebRTCPeerConnectionHandler; 93 class WebRTCPeerConnectionHandler;
93 class WebRTCPeerConnectionHandlerClient; 94 class WebRTCPeerConnectionHandlerClient;
94 class WebSandboxSupport; 95 class WebSandboxSupport;
95 class WebScheduler; 96 class WebScheduler;
96 class WebSecurityOrigin; 97 class WebSecurityOrigin;
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 624
624 // Web Notifications -------------------------------------------------- 625 // Web Notifications --------------------------------------------------
625 626
626 virtual WebNotificationManager* notificationManager() { return 0; } 627 virtual WebNotificationManager* notificationManager() { return 0; }
627 628
628 629
629 // Geofencing --------------------------------------------------------- 630 // Geofencing ---------------------------------------------------------
630 631
631 virtual WebGeofencingProvider* geofencingProvider() { return 0; } 632 virtual WebGeofencingProvider* geofencingProvider() { return 0; }
632 633
634
633 // Bluetooth ---------------------------------------------------------- 635 // Bluetooth ----------------------------------------------------------
634 636
635 // Returns pointer to client owned WebBluetooth implementation. 637 // Returns pointer to client owned WebBluetooth implementation.
636 virtual WebBluetooth* bluetooth() { return 0; } 638 virtual WebBluetooth* bluetooth() { return 0; }
637 639
638 640
639 // Push API------------------------------------------------------------ 641 // Push API------------------------------------------------------------
640 642
641 virtual WebPushProvider* pushProvider() { return 0; } 643 virtual WebPushProvider* pushProvider() { return 0; }
642 644
645
646 // navigator.connect --------------------------------------------------
647
648 virtual WebNavigatorConnectProvider* navigatorConnectProvider() { return 0; }
649
643 protected: 650 protected:
644 virtual ~Platform() { } 651 virtual ~Platform() { }
645 }; 652 };
646 653
647 } // namespace blink 654 } // namespace blink
648 655
649 #endif 656 #endif
OLDNEW
« no previous file with comments | « Source/platform/RuntimeEnabledFeatures.in ('k') | public/platform/WebNavigatorConnectProvider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698