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

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

Issue 650613005: bluetooth: Initial WebBluetooth & WebBluetoothError. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: New 3 patch approach, WebBluetooth and WebBluetooth Error only. Created 6 years, 1 month 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 | « no previous file | public/platform/WebBluetooth.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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 #include "WebString.h" 54 #include "WebString.h"
55 #include "WebURLError.h" 55 #include "WebURLError.h"
56 #include "WebVector.h" 56 #include "WebVector.h"
57 57
58 class GrContext; 58 class GrContext;
59 59
60 namespace blink { 60 namespace blink {
61 61
62 class WebAudioBus; 62 class WebAudioBus;
63 class WebBlobRegistry; 63 class WebBlobRegistry;
64 class WebBluetooth;
64 class WebContentDecryptionModule; 65 class WebContentDecryptionModule;
65 class WebClipboard; 66 class WebClipboard;
66 class WebCompositorSupport; 67 class WebCompositorSupport;
67 class WebConvertableToTraceFormat; 68 class WebConvertableToTraceFormat;
68 class WebCookieJar; 69 class WebCookieJar;
69 class WebCrypto; 70 class WebCrypto;
70 class WebDatabaseObserver; 71 class WebDatabaseObserver;
71 class WebDiscardableMemory; 72 class WebDiscardableMemory;
72 class WebPlatformEventListener; 73 class WebPlatformEventListener;
73 class WebFallbackThemeEngine; 74 class WebFallbackThemeEngine;
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 632
632 // Web Notifications -------------------------------------------------- 633 // Web Notifications --------------------------------------------------
633 634
634 virtual WebNotificationManager* notificationManager() { return 0; } 635 virtual WebNotificationManager* notificationManager() { return 0; }
635 636
636 637
637 // Geofencing --------------------------------------------------------- 638 // Geofencing ---------------------------------------------------------
638 639
639 virtual WebGeofencingProvider* geofencingProvider() { return 0; } 640 virtual WebGeofencingProvider* geofencingProvider() { return 0; }
640 641
642 // Bluetooth ----------------------------------------------------------
643
644 // Returns pointer to client owned WebBluetooth implementation.
645 virtual WebBluetooth* bluetooth() { return 0; }
646
641 protected: 647 protected:
642 virtual ~Platform() { } 648 virtual ~Platform() { }
643 }; 649 };
644 650
645 } // namespace blink 651 } // namespace blink
646 652
647 #endif 653 #endif
OLDNEW
« no previous file with comments | « no previous file | public/platform/WebBluetooth.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698