summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webfallbackthemeengine_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/glue/webfallbackthemeengine_impl.h')
-rw-r--r--webkit/glue/webfallbackthemeengine_impl.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/webkit/glue/webfallbackthemeengine_impl.h b/webkit/glue/webfallbackthemeengine_impl.h
new file mode 100644
index 0000000..0887774
--- /dev/null
+++ b/webkit/glue/webfallbackthemeengine_impl.h
@@ -0,0 +1,39 @@
+// Copyright (c) 2011 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_GLUE_WEBFALLBACKTHEMEENGINE_IMPL_H_
+#define WEBKIT_GLUE_WEBFALLBACKTHEMEENGINE_IMPL_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "third_party/WebKit/Source/Platform/chromium/public/WebFallbackThemeEngine.h"
+
+namespace ui {
+class FallbackTheme;
+}
+
+namespace webkit_glue {
+
+class WebFallbackThemeEngineImpl : public WebKit::WebFallbackThemeEngine {
+ public:
+ WebFallbackThemeEngineImpl();
+ virtual ~WebFallbackThemeEngineImpl();
+
+ // WebFallbackThemeEngine methods:
+ virtual WebKit::WebSize getSize(WebKit::WebFallbackThemeEngine::Part);
+ virtual void paint(
+ WebKit::WebCanvas* canvas,
+ WebKit::WebFallbackThemeEngine::Part part,
+ WebKit::WebFallbackThemeEngine::State state,
+ const WebKit::WebRect& rect,
+ const WebKit::WebFallbackThemeEngine::ExtraParams* extra_params);
+
+ private:
+ scoped_ptr<ui::FallbackTheme> theme_;
+
+ DISALLOW_COPY_AND_ASSIGN(WebFallbackThemeEngineImpl);
+};
+
+} // namespace webkit_glue
+
+#endif // WEBKIT_GLUE_WEBFALLBACKTHEMEENGINE_IMPL_H_