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

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

Issue 464073002: Pass through geofencing API calls to the content layer. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 4 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 class WebConvertableToTraceFormat; 67 class WebConvertableToTraceFormat;
68 class WebCookieJar; 68 class WebCookieJar;
69 class WebCrypto; 69 class WebCrypto;
70 class WebDatabaseObserver; 70 class WebDatabaseObserver;
71 class WebDiscardableMemory; 71 class WebDiscardableMemory;
72 class WebPlatformEventListener; 72 class WebPlatformEventListener;
73 class WebFallbackThemeEngine; 73 class WebFallbackThemeEngine;
74 class WebFileSystem; 74 class WebFileSystem;
75 class WebFileUtilities; 75 class WebFileUtilities;
76 class WebFlingAnimator; 76 class WebFlingAnimator;
77 class WebGeofencingProvider;
77 class WebGestureCurveTarget; 78 class WebGestureCurveTarget;
78 class WebGestureCurve; 79 class WebGestureCurve;
79 class WebGraphicsContext3DProvider; 80 class WebGraphicsContext3DProvider;
80 class WebIDBFactory; 81 class WebIDBFactory;
81 class WebMIDIAccessor; 82 class WebMIDIAccessor;
82 class WebMIDIAccessorClient; 83 class WebMIDIAccessorClient;
83 class WebMediaStreamCenter; 84 class WebMediaStreamCenter;
84 class WebMediaStreamCenterClient; 85 class WebMediaStreamCenterClient;
85 class WebMessagePortChannel; 86 class WebMessagePortChannel;
86 class WebMimeRegistry; 87 class WebMimeRegistry;
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 624
624 // WebDatabase -------------------------------------------------------- 625 // WebDatabase --------------------------------------------------------
625 626
626 virtual WebDatabaseObserver* databaseObserver() { return 0; } 627 virtual WebDatabaseObserver* databaseObserver() { return 0; }
627 628
628 629
629 // Web Notifications -------------------------------------------------- 630 // Web Notifications --------------------------------------------------
630 631
631 virtual WebNotificationPresenter* notificationPresenter() { return 0; } 632 virtual WebNotificationPresenter* notificationPresenter() { return 0; }
632 633
634 // Geofencing ---------------------------------------------------------
abarth-chromium 2014/08/23 05:43:34 Two blank lines between sections pls
Marijn Kruisselbrink 2014/08/25 22:25:25 Done.
635
636 virtual WebGeofencingProvider* geofencingProvider() { return 0; }
633 637
634 protected: 638 protected:
635 virtual ~Platform() { } 639 virtual ~Platform() { }
636 }; 640 };
637 641
638 } // namespace blink 642 } // namespace blink
639 643
640 #endif 644 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698