Index: webkit/glue/webkitplatformsupport_impl.h |
diff --git a/webkit/glue/webkitplatformsupport_impl.h b/webkit/glue/webkitplatformsupport_impl.h |
deleted file mode 100644 |
index 68fcb2aa42d3e5692a2ae51dd47d21e010d3231e..0000000000000000000000000000000000000000 |
--- a/webkit/glue/webkitplatformsupport_impl.h |
+++ /dev/null |
@@ -1,155 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef WEBKIT_PLATFORM_SUPPORT_IMPL_H_ |
-#define WEBKIT_PLATFORM_SUPPORT_IMPL_H_ |
- |
-#include "base/compiler_specific.h" |
-#include "base/debug/trace_event.h" |
-#include "base/platform_file.h" |
-#include "base/timer/timer.h" |
-#include "third_party/WebKit/public/platform/Platform.h" |
-#include "third_party/WebKit/public/platform/WebURLError.h" |
-#include "ui/base/layout.h" |
-#include "webkit/glue/resource_loader_bridge.h" |
-#include "webkit/glue/webkit_glue_export.h" |
- |
-namespace base { |
-class MessageLoop; |
-} |
- |
-namespace WebKit { |
-class WebSocketStreamHandle; |
-} |
- |
-namespace webkit_glue { |
- |
-class WebSocketStreamHandleDelegate; |
-class WebSocketStreamHandleBridge; |
- |
-class WEBKIT_GLUE_EXPORT WebKitPlatformSupportImpl : |
- NON_EXPORTED_BASE(public WebKit::Platform) { |
- public: |
- WebKitPlatformSupportImpl(); |
- virtual ~WebKitPlatformSupportImpl(); |
- |
- // Platform methods (partial implementation): |
- virtual base::PlatformFile databaseOpenFile( |
- const WebKit::WebString& vfs_file_name, int desired_flags); |
- virtual int databaseDeleteFile(const WebKit::WebString& vfs_file_name, |
- bool sync_dir); |
- virtual long databaseGetFileAttributes( |
- const WebKit::WebString& vfs_file_name); |
- virtual long long databaseGetFileSize(const WebKit::WebString& vfs_file_name); |
- virtual long long databaseGetSpaceAvailableForOrigin( |
- const WebKit::WebString& origin_identifier); |
- virtual WebKit::WebString signedPublicKeyAndChallengeString( |
- unsigned key_size_index, const WebKit::WebString& challenge, |
- const WebKit::WebURL& url); |
- virtual size_t memoryUsageMB(); |
- virtual size_t actualMemoryUsageMB(); |
-#if defined(OS_ANDROID) // Other OSes just use the default values. |
- // TODO(jochen): Remove these. |
- virtual size_t lowMemoryUsageMB(); |
- virtual size_t highMemoryUsageMB(); |
- virtual size_t highUsageDeltaMB(); |
-#endif |
- |
- virtual void startHeapProfiling(const WebKit::WebString& prefix); |
- virtual void stopHeapProfiling() OVERRIDE; |
- virtual void dumpHeapProfiling(const WebKit::WebString& reason); |
- virtual WebKit::WebString getHeapProfile() OVERRIDE; |
- |
- virtual bool processMemorySizesInBytes(size_t* private_bytes, |
- size_t* shared_bytes); |
- virtual bool memoryAllocatorWasteInBytes(size_t* size); |
- virtual WebKit::WebURLLoader* createURLLoader(); |
- virtual WebKit::WebSocketStreamHandle* createSocketStreamHandle(); |
- virtual WebKit::WebString userAgent(const WebKit::WebURL& url); |
- virtual WebKit::WebData parseDataURL( |
- const WebKit::WebURL& url, WebKit::WebString& mimetype, |
- WebKit::WebString& charset); |
- virtual WebKit::WebURLError cancelledError(const WebKit::WebURL& url) const; |
- virtual void decrementStatsCounter(const char* name); |
- virtual void incrementStatsCounter(const char* name); |
- virtual void histogramCustomCounts( |
- const char* name, int sample, int min, int max, int bucket_count); |
- virtual void histogramEnumeration( |
- const char* name, int sample, int boundary_value); |
- virtual void histogramSparse(const char* name, int sample); |
- virtual const unsigned char* getTraceCategoryEnabledFlag( |
- const char* category_name); |
- virtual long* getTraceSamplingState(const unsigned thread_bucket); |
- virtual void addTraceEvent( |
- char phase, |
- const unsigned char* category_group_enabled, |
- const char* name, |
- unsigned long long id, |
- int num_args, |
- const char** arg_names, |
- const unsigned char* arg_types, |
- const unsigned long long* arg_values, |
- unsigned char flags); |
- virtual WebKit::WebData loadResource(const char* name); |
- virtual WebKit::WebString queryLocalizedString( |
- WebKit::WebLocalizedString::Name name); |
- virtual WebKit::WebString queryLocalizedString( |
- WebKit::WebLocalizedString::Name name, int numeric_value); |
- virtual WebKit::WebString queryLocalizedString( |
- WebKit::WebLocalizedString::Name name, const WebKit::WebString& value); |
- virtual WebKit::WebString queryLocalizedString( |
- WebKit::WebLocalizedString::Name name, |
- const WebKit::WebString& value1, const WebKit::WebString& value2); |
- virtual void suddenTerminationChanged(bool enabled) { } |
- virtual double currentTime(); |
- virtual double monotonicallyIncreasingTime(); |
- virtual void cryptographicallyRandomValues( |
- unsigned char* buffer, size_t length); |
- virtual void setSharedTimerFiredFunction(void (*func)()); |
- virtual void setSharedTimerFireInterval(double interval_seconds); |
- virtual void stopSharedTimer(); |
- virtual void callOnMainThread(void (*func)(void*), void* context); |
- |
- |
- // Embedder functions. The following are not implemented by the glue layer and |
- // need to be specialized by the embedder. |
- |
- // Gets a localized string given a message id. Returns an empty string if the |
- // message id is not found. |
- virtual base::string16 GetLocalizedString(int message_id) = 0; |
- |
- // Returns the raw data for a resource. This resource must have been |
- // specified as BINDATA in the relevant .rc file. |
- virtual base::StringPiece GetDataResource(int resource_id, |
- ui::ScaleFactor scale_factor) = 0; |
- |
- // Creates a ResourceLoaderBridge. |
- virtual ResourceLoaderBridge* CreateResourceLoader( |
- const ResourceLoaderBridge::RequestInfo& request_info) = 0; |
- // Creates a WebSocketStreamHandleBridge. |
- virtual WebSocketStreamHandleBridge* CreateWebSocketBridge( |
- WebKit::WebSocketStreamHandle* handle, |
- WebSocketStreamHandleDelegate* delegate) = 0; |
- |
- void SuspendSharedTimer(); |
- void ResumeSharedTimer(); |
- virtual void OnStartSharedTimer(base::TimeDelta delay) {} |
- |
- private: |
- void DoTimeout() { |
- if (shared_timer_func_ && !shared_timer_suspended_) |
- shared_timer_func_(); |
- } |
- |
- base::MessageLoop* main_loop_; |
- base::OneShotTimer<WebKitPlatformSupportImpl> shared_timer_; |
- void (*shared_timer_func_)(); |
- double shared_timer_fire_time_; |
- bool shared_timer_fire_time_was_set_while_suspended_; |
- int shared_timer_suspended_; // counter |
-}; |
- |
-} // namespace webkit_glue |
- |
-#endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_ |