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

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

Issue 963683002: Add IDL and initial Blink API for Background Sync (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing serviceWorkerRegistration.syncManager to interface tests Created 5 years, 9 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) 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 class WebRTCPeerConnectionHandler; 94 class WebRTCPeerConnectionHandler;
95 class WebRTCPeerConnectionHandlerClient; 95 class WebRTCPeerConnectionHandlerClient;
96 class WebSandboxSupport; 96 class WebSandboxSupport;
97 class WebScheduler; 97 class WebScheduler;
98 class WebSecurityOrigin; 98 class WebSecurityOrigin;
99 class WebScrollbarBehavior; 99 class WebScrollbarBehavior;
100 class WebSocketHandle; 100 class WebSocketHandle;
101 class WebSpeechSynthesizer; 101 class WebSpeechSynthesizer;
102 class WebSpeechSynthesizerClient; 102 class WebSpeechSynthesizerClient;
103 class WebStorageNamespace; 103 class WebStorageNamespace;
104 class WebSyncProvider;
104 struct WebFloatPoint; 105 struct WebFloatPoint;
105 class WebThemeEngine; 106 class WebThemeEngine;
106 class WebThread; 107 class WebThread;
107 class WebURL; 108 class WebURL;
108 class WebURLLoader; 109 class WebURLLoader;
109 class WebUnitTestSupport; 110 class WebUnitTestSupport;
110 class WebWaitableEvent; 111 class WebWaitableEvent;
111 struct WebLocalizedString; 112 struct WebLocalizedString;
112 struct WebSize; 113 struct WebSize;
113 114
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
659 660
660 // navigator.connect -------------------------------------------------- 661 // navigator.connect --------------------------------------------------
661 662
662 virtual WebNavigatorConnectProvider* navigatorConnectProvider() { return 0; } 663 virtual WebNavigatorConnectProvider* navigatorConnectProvider() { return 0; }
663 664
664 // Permissions -------------------------------------------------------- 665 // Permissions --------------------------------------------------------
665 666
666 virtual WebPermissionClient* permissionClient() { return 0; } 667 virtual WebPermissionClient* permissionClient() { return 0; }
667 668
668 669
670 // Background Sync API------------------------------------------------------ ------
671
672 virtual WebSyncProvider* backgroundSyncProvider() { return 0; }
673
669 protected: 674 protected:
670 BLINK_PLATFORM_EXPORT Platform(); 675 BLINK_PLATFORM_EXPORT Platform();
671 virtual ~Platform() { } 676 virtual ~Platform() { }
672 677
673 WebThread* m_mainThread; 678 WebThread* m_mainThread;
674 }; 679 };
675 680
676 } // namespace blink 681 } // namespace blink
677 682
678 #endif 683 #endif
OLDNEW
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl ('k') | public/platform/modules/background_sync/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698