X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2Fpublic%2Fplatform%2FPlatform.h;h=c319e30c3ab10f33258b52f0ef4015c0d13169d6;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=6fc99347be5d7cf4470b69a2e5efeb831c9e1f65;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/public/platform/Platform.h b/src/third_party/WebKit/public/platform/Platform.h index 6fc9934..c319e30 100644 --- a/src/third_party/WebKit/public/platform/Platform.h +++ b/src/third_party/WebKit/public/platform/Platform.h @@ -66,7 +66,6 @@ class WebClipboard; class WebCompositorSupport; class WebConvertableToTraceFormat; class WebCookieJar; -class WebCredentialManager; class WebCrypto; class WebDatabaseObserver; class WebDiscardableMemory; @@ -75,6 +74,7 @@ class WebFallbackThemeEngine; class WebFileSystem; class WebFileUtilities; class WebFlingAnimator; +class WebGeofencingProvider; class WebGestureCurveTarget; class WebGestureCurve; class WebGraphicsContext3DProvider; @@ -171,10 +171,6 @@ public: // Must return non-null. virtual WebBlobRegistry* blobRegistry() { return 0; } - // Credential Management ----------------------------------------------- - - virtual WebCredentialManager* credentialManager() { return 0; } - // Database ------------------------------------------------------------ // Opens a database file; dirHandle should be 0 if the caller does not need @@ -361,6 +357,9 @@ public: // embedder. virtual WebThread* currentThread() { return 0; } + // Yield the current thread so another thread can be scheduled. + virtual void yieldCurrentThread() { } + // WaitableEvent ------------------------------------------------------- @@ -636,6 +635,10 @@ public: virtual WebNotificationPresenter* notificationPresenter() { return 0; } + // Geofencing --------------------------------------------------------- + + virtual WebGeofencingProvider* geofencingProvider() { return 0; } + protected: virtual ~Platform() { } };