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

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

Issue 584023002: [WIP] Implement Notifications through Platform instead of WebFrame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/web.gypi ('k') | public/platform/WebNotificationData.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 class WebGestureCurveTarget; 78 class WebGestureCurveTarget;
79 class WebGestureCurve; 79 class WebGestureCurve;
80 class WebGraphicsContext3DProvider; 80 class WebGraphicsContext3DProvider;
81 class WebIDBFactory; 81 class WebIDBFactory;
82 class WebMIDIAccessor; 82 class WebMIDIAccessor;
83 class WebMIDIAccessorClient; 83 class WebMIDIAccessorClient;
84 class WebMediaStreamCenter; 84 class WebMediaStreamCenter;
85 class WebMediaStreamCenterClient; 85 class WebMediaStreamCenterClient;
86 class WebMessagePortChannel; 86 class WebMessagePortChannel;
87 class WebMimeRegistry; 87 class WebMimeRegistry;
88 class WebNotificationPresenter; 88 class WebNotificationManager;
89 class WebPluginListBuilder; 89 class WebPluginListBuilder;
90 class WebPrescientNetworking; 90 class WebPrescientNetworking;
91 class WebPublicSuffixList; 91 class WebPublicSuffixList;
92 class WebRTCPeerConnectionHandler; 92 class WebRTCPeerConnectionHandler;
93 class WebRTCPeerConnectionHandlerClient; 93 class WebRTCPeerConnectionHandlerClient;
94 class WebSandboxSupport; 94 class WebSandboxSupport;
95 class WebSecurityOrigin; 95 class WebSecurityOrigin;
96 class WebScrollbarBehavior; 96 class WebScrollbarBehavior;
97 class WebSocketHandle; 97 class WebSocketHandle;
98 class WebSocketStreamHandle; 98 class WebSocketStreamHandle;
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 WebStorageQuotaCallbacks) { } 622 WebStorageQuotaCallbacks) { }
623 623
624 624
625 // WebDatabase -------------------------------------------------------- 625 // WebDatabase --------------------------------------------------------
626 626
627 virtual WebDatabaseObserver* databaseObserver() { return 0; } 627 virtual WebDatabaseObserver* databaseObserver() { return 0; }
628 628
629 629
630 // Web Notifications -------------------------------------------------- 630 // Web Notifications --------------------------------------------------
631 631
632 virtual WebNotificationPresenter* notificationPresenter() { return 0; } 632 virtual WebNotificationManager* notificationManager() { return 0; }
633 633
634 634
635 // Geofencing --------------------------------------------------------- 635 // Geofencing ---------------------------------------------------------
636 636
637 virtual WebGeofencingProvider* geofencingProvider() { return 0; } 637 virtual WebGeofencingProvider* geofencingProvider() { return 0; }
638 638
639 protected: 639 protected:
640 virtual ~Platform() { } 640 virtual ~Platform() { }
641 }; 641 };
642 642
643 } // namespace blink 643 } // namespace blink
644 644
645 #endif 645 #endif
OLDNEW
« no previous file with comments | « Source/web/web.gypi ('k') | public/platform/WebNotificationData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698