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

Side by Side Diff: webkit/glue/webwidget.h

Issue 11588: Remove base versions of the graphics headers, which previously just forwarded... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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
« no previous file with comments | « webkit/glue/webview_impl.h ('k') | webkit/glue/webwidget_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_GLUE_WEBWIDGET_H__ 5 #ifndef WEBKIT_GLUE_WEBWIDGET_H__
6 #define WEBKIT_GLUE_WEBWIDGET_H__ 6 #define WEBKIT_GLUE_WEBWIDGET_H__
7 7
8 #include "base/gfx/platform_canvas.h"
9 #include "base/ref_counted.h" 8 #include "base/ref_counted.h"
9 #include "skia/ext/platform_canvas.h"
10 10
11 namespace gfx { 11 namespace gfx {
12 class Rect; 12 class Rect;
13 class Size; 13 class Size;
14 } 14 }
15 15
16 class WebInputEvent; 16 class WebInputEvent;
17 class WebWidgetDelegate; 17 class WebWidgetDelegate;
18 18
19 class WebWidget : public base::RefCounted<WebWidget> { 19 class WebWidget : public base::RefCounted<WebWidget> {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 // Retrieve the status of this widget required by IME APIs. 66 // Retrieve the status of this widget required by IME APIs.
67 virtual bool ImeUpdateStatus(bool* enable_ime, const void** node, 67 virtual bool ImeUpdateStatus(bool* enable_ime, const void** node,
68 gfx::Rect* caret_rect) = 0; 68 gfx::Rect* caret_rect) = 0;
69 69
70 private: 70 private:
71 DISALLOW_EVIL_CONSTRUCTORS(WebWidget); 71 DISALLOW_EVIL_CONSTRUCTORS(WebWidget);
72 }; 72 };
73 73
74 #endif // #ifndef WEBKIT_GLUE_WEBWIDGET_H__ 74 #endif // #ifndef WEBKIT_GLUE_WEBWIDGET_H__
75 75
OLDNEW
« no previous file with comments | « webkit/glue/webview_impl.h ('k') | webkit/glue/webwidget_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698