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

Unified Diff: webkit/child/webfallbackthemeengine_impl.h

Issue 160023003: Move webfallbackthemeengine_impl.* to content/child/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix namespace nits Created 6 years, 10 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
Index: webkit/child/webfallbackthemeengine_impl.h
diff --git a/webkit/child/webfallbackthemeengine_impl.h b/webkit/child/webfallbackthemeengine_impl.h
deleted file mode 100644
index fc793e217f429055ead9f89f2a59b63c4b46af3a..0000000000000000000000000000000000000000
--- a/webkit/child/webfallbackthemeengine_impl.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// 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_CHILD_WEBFALLBACKTHEMEENGINE_IMPL_H_
-#define WEBKIT_CHILD_WEBFALLBACKTHEMEENGINE_IMPL_H_
-
-#include "base/compiler_specific.h"
-#include "base/memory/scoped_ptr.h"
-#include "third_party/WebKit/public/platform/WebFallbackThemeEngine.h"
-#include "webkit/child/webkit_child_export.h"
-
-namespace ui {
-class FallbackTheme;
-}
-
-namespace webkit_glue {
-
-class WEBKIT_CHILD_EXPORT WebFallbackThemeEngineImpl :
- NON_EXPORTED_BASE(public blink::WebFallbackThemeEngine) {
- public:
- WebFallbackThemeEngineImpl();
- virtual ~WebFallbackThemeEngineImpl();
-
- // WebFallbackThemeEngine methods:
- virtual blink::WebSize getSize(blink::WebFallbackThemeEngine::Part);
- virtual void paint(
- blink::WebCanvas* canvas,
- blink::WebFallbackThemeEngine::Part part,
- blink::WebFallbackThemeEngine::State state,
- const blink::WebRect& rect,
- const blink::WebFallbackThemeEngine::ExtraParams* extra_params);
-
- private:
- scoped_ptr<ui::FallbackTheme> theme_;
-
- DISALLOW_COPY_AND_ASSIGN(WebFallbackThemeEngineImpl);
-};
-
-} // namespace webkit_glue
-
-#endif // WEBKIT_CHILD_WEBFALLBACKTHEMEENGINE_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698