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

Side by Side Diff: Source/core/page/ChromeClient.h

Issue 319183004: Prefer to forward-declare GraphicsContext in headers. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: schenney nit (pare down platform/geometry/ includes to *Rect.h) Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 16 matching lines...) Expand all
27 #include "core/loader/FrameLoader.h" 27 #include "core/loader/FrameLoader.h"
28 #include "core/loader/NavigationPolicy.h" 28 #include "core/loader/NavigationPolicy.h"
29 #include "core/frame/ConsoleTypes.h" 29 #include "core/frame/ConsoleTypes.h"
30 #include "core/page/FocusType.h" 30 #include "core/page/FocusType.h"
31 #include "core/rendering/RenderEmbeddedObject.h" 31 #include "core/rendering/RenderEmbeddedObject.h"
32 #include "core/rendering/style/RenderStyleConstants.h" 32 #include "core/rendering/style/RenderStyleConstants.h"
33 #include "platform/Cursor.h" 33 #include "platform/Cursor.h"
34 #include "platform/HostWindow.h" 34 #include "platform/HostWindow.h"
35 #include "platform/PopupMenu.h" 35 #include "platform/PopupMenu.h"
36 #include "platform/PopupMenuClient.h" 36 #include "platform/PopupMenuClient.h"
37 #include "platform/graphics/GraphicsContext.h"
38 #include "platform/scroll/ScrollTypes.h" 37 #include "platform/scroll/ScrollTypes.h"
39 #include "wtf/Forward.h" 38 #include "wtf/Forward.h"
40 #include "wtf/PassOwnPtr.h" 39 #include "wtf/PassOwnPtr.h"
41 #include "wtf/Vector.h" 40 #include "wtf/Vector.h"
42 41
43 42
44 #ifndef __OBJC__ 43 #ifndef __OBJC__
45 class NSMenu; 44 class NSMenu;
46 class NSResponder; 45 class NSResponder;
47 #endif 46 #endif
48 47
49 namespace WebCore { 48 namespace WebCore {
50 49
51 class AXObject; 50 class AXObject;
52 class ColorChooser; 51 class ColorChooser;
53 class ColorChooserClient; 52 class ColorChooserClient;
54 class DateTimeChooser; 53 class DateTimeChooser;
55 class DateTimeChooserClient; 54 class DateTimeChooserClient;
56 class Element; 55 class Element;
57 class FileChooser; 56 class FileChooser;
58 class FloatRect; 57 class FloatRect;
59 class Frame; 58 class Frame;
59 class GraphicsContext;
60 class GraphicsLayer; 60 class GraphicsLayer;
61 class GraphicsLayerFactory; 61 class GraphicsLayerFactory;
62 class HitTestResult; 62 class HitTestResult;
63 class HTMLFormControlElement; 63 class HTMLFormControlElement;
64 class HTMLInputElement; 64 class HTMLInputElement;
65 class IntRect; 65 class IntRect;
66 class LocalFrame; 66 class LocalFrame;
67 class Node; 67 class Node;
68 class Page; 68 class Page;
69 class PagePopup; 69 class PagePopup;
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 virtual void didCancelCompositionOnSelectionChange() { } 237 virtual void didCancelCompositionOnSelectionChange() { }
238 virtual void willSetInputMethodState() { } 238 virtual void willSetInputMethodState() { }
239 virtual void didUpdateTextOfFocusedElementByNonUserInput() { } 239 virtual void didUpdateTextOfFocusedElementByNonUserInput() { }
240 240
241 protected: 241 protected:
242 virtual ~ChromeClient() { } 242 virtual ~ChromeClient() { }
243 }; 243 };
244 244
245 } 245 }
246 #endif // ChromeClient_h 246 #endif // ChromeClient_h
OLDNEW
« no previous file with comments | « Source/core/html/canvas/WebGLRenderingContextBase.cpp ('k') | Source/core/page/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698