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

Side by Side Diff: webkit/compositor_bindings/webcore_convert.h

Issue 11366089: cc: Remove all remaining use of WebCore Rect/Point/Size types from the compositor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove gyp entries for stubs Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef WEBKIT_COMPOSITOR_BINDINGS_WEBCORE_CONVERT_H_
6 #define WEBKIT_COMPOSITOR_BINDINGS_WEBCORE_CONVERT_H_
7
8 #include "FloatPoint.h"
9 #include "IntPoint.h"
10 #include "IntSize.h"
11 #include <public/WebFloatPoint.h>
12 #include <public/WebRect.h>
13 #include <public/WebPoint.h>
14 #include <public/WebSize.h>
15
16 namespace WebKit {
17
18 WebCore::FloatPoint convert(const WebFloatPoint& point);
19 WebCore::IntPoint convert(const WebPoint& point);
20 WebCore::IntSize convert(const WebSize& size);
21 WebSize convert(const WebCore::IntSize& size);
22 WebFloatPoint convert(const WebCore::FloatPoint& point);
23
24 }
25
26 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEBCORE_CONVERT_H_
OLDNEW
« no previous file with comments | « webkit/compositor_bindings/web_to_ccinput_handler_adapter.cc ('k') | webkit/compositor_bindings/webcore_convert.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698