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

Side by Side Diff: sky/engine/core/page/Page.h

Issue 870073003: Remove mouse events from Sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 30 matching lines...) Expand all
41 class Chrome; 41 class Chrome;
42 class ChromeClient; 42 class ChromeClient;
43 class ClientRectList; 43 class ClientRectList;
44 class Document; 44 class Document;
45 class DragCaretController; 45 class DragCaretController;
46 class EditorClient; 46 class EditorClient;
47 class FocusController; 47 class FocusController;
48 class Frame; 48 class Frame;
49 class FrameHost; 49 class FrameHost;
50 class PageLifecycleNotifier; 50 class PageLifecycleNotifier;
51 class PlatformMouseEvent;
52 class Range; 51 class Range;
53 class RenderBox; 52 class RenderBox;
54 class RenderObject; 53 class RenderObject;
55 class ScrollableArea; 54 class ScrollableArea;
56 class ServiceProvider; 55 class ServiceProvider;
57 class Settings; 56 class Settings;
58 class SpellCheckerClient; 57 class SpellCheckerClient;
59 class UndoStack; 58 class UndoStack;
60 class VisibleSelection; 59 class VisibleSelection;
61 60
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 HashSet<RawPtr<MultisamplingChangedObserver> > m_multisamplingChangedObserve rs; 188 HashSet<RawPtr<MultisamplingChangedObserver> > m_multisamplingChangedObserve rs;
190 189
191 // A pointer to all the interfaces provided to in-process Frames for this Pa ge. 190 // A pointer to all the interfaces provided to in-process Frames for this Pa ge.
192 // FIXME: Most of the members of Page should move onto FrameHost. 191 // FIXME: Most of the members of Page should move onto FrameHost.
193 OwnPtr<FrameHost> m_frameHost; 192 OwnPtr<FrameHost> m_frameHost;
194 }; 193 };
195 194
196 } // namespace blink 195 } // namespace blink
197 196
198 #endif // SKY_ENGINE_CORE_PAGE_PAGE_H_ 197 #endif // SKY_ENGINE_CORE_PAGE_PAGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698