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

Unified Diff: webkit/child/webkitplatformsupport_child_impl.h

Issue 148333009: Move webkit/child/webkitplatformsupport_child_impl to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes for Windows and Android builds, plus fix nits Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/child/webkit_child.gyp ('k') | webkit/child/webkitplatformsupport_child_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/child/webkitplatformsupport_child_impl.h
diff --git a/webkit/child/webkitplatformsupport_child_impl.h b/webkit/child/webkitplatformsupport_child_impl.h
deleted file mode 100644
index 1e83d3b8cb5908a7a1dca655d245cbbe3b70eac4..0000000000000000000000000000000000000000
--- a/webkit/child/webkitplatformsupport_child_impl.h
+++ /dev/null
@@ -1,72 +0,0 @@
-// // Copyright 2013 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_CHILD_WEBKITPLATFORMSUPPORT_CHILD_IMPL_H_
-#define WEBKIT_CHILD_WEBKITPLATFORMSUPPORT_CHILD_IMPL_H_
-
-#include "base/threading/thread_local_storage.h"
-#include "webkit/child/webfallbackthemeengine_impl.h"
-#include "webkit/child/webkit_child_export.h"
-#include "webkit/child/webkitplatformsupport_impl.h"
-
-#if defined(USE_DEFAULT_RENDER_THEME)
-#include "webkit/child/webthemeengine_impl_default.h"
-#elif defined(OS_WIN)
-#include "webkit/child/webthemeengine_impl_win.h"
-#elif defined(OS_MACOSX)
-#include "webkit/child/webthemeengine_impl_mac.h"
-#elif defined(OS_ANDROID)
-#include "webkit/child/webthemeengine_impl_android.h"
-#endif
-
-namespace webkit_glue {
-
-class FlingCurveConfiguration;
-
-class WEBKIT_CHILD_EXPORT WebKitPlatformSupportChildImpl :
- public WebKitPlatformSupportImpl {
- public:
- WebKitPlatformSupportChildImpl();
- virtual ~WebKitPlatformSupportChildImpl();
-
- // Platform methods (partial implementation):
- virtual blink::WebThemeEngine* themeEngine();
- virtual blink::WebFallbackThemeEngine* fallbackThemeEngine();
-
- void SetFlingCurveParameters(
- const std::vector<float>& new_touchpad,
- const std::vector<float>& new_touchscreen);
-
- virtual blink::WebGestureCurve* createFlingAnimationCurve(
- int device_source,
- const blink::WebFloatPoint& velocity,
- const blink::WebSize& cumulative_scroll) OVERRIDE;
-
- virtual blink::WebThread* createThread(const char* name);
- virtual blink::WebThread* currentThread();
-
- virtual blink::WebWaitableEvent* createWaitableEvent();
- virtual blink::WebWaitableEvent* waitMultipleEvents(
- const blink::WebVector<blink::WebWaitableEvent*>& events);
-
- virtual void didStartWorkerRunLoop(
- const blink::WebWorkerRunLoop& runLoop) OVERRIDE;
- virtual void didStopWorkerRunLoop(
- const blink::WebWorkerRunLoop& runLoop) OVERRIDE;
-
- virtual blink::WebDiscardableMemory* allocateAndLockDiscardableMemory(
- size_t bytes);
-
- private:
- static void DestroyCurrentThread(void*);
-
- WebThemeEngineImpl native_theme_engine_;
- WebFallbackThemeEngineImpl fallback_theme_engine_;
- base::ThreadLocalStorage::Slot current_thread_slot_;
- scoped_ptr<FlingCurveConfiguration> fling_curve_configuration_;
-};
-
-} // namespace webkit_glue
-
-#endif // WEBKIT_CHILD_WEBKITPLATFORMSUPPORT_CHILD_IMPL_H_
« no previous file with comments | « webkit/child/webkit_child.gyp ('k') | webkit/child/webkitplatformsupport_child_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698