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

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalFrame.h

Issue 1188563005: Compute snap offsets (both repeat and element based) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: remove m_frame Created 5 years, 2 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) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999-2001 Lars Knoll <knoll@kde.org> 3 * 1999-2001 Lars Knoll <knoll@kde.org>
4 * 1999-2001 Antti Koivisto <koivisto@kde.org> 4 * 1999-2001 Antti Koivisto <koivisto@kde.org>
5 * 2000-2001 Simon Hausmann <hausmann@kde.org> 5 * 2000-2001 Simon Hausmann <hausmann@kde.org>
6 * 2000-2001 Dirk Mueller <mueller@kde.org> 6 * 2000-2001 Dirk Mueller <mueller@kde.org>
7 * 2000 Stefan Schimanski <1Stein@gmx.de> 7 * 2000 Stefan Schimanski <1Stein@gmx.de>
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 class InputMethodController; 61 class InputMethodController;
62 class IntPoint; 62 class IntPoint;
63 class IntSize; 63 class IntSize;
64 class InstrumentingAgents; 64 class InstrumentingAgents;
65 class LocalDOMWindow; 65 class LocalDOMWindow;
66 class NavigationScheduler; 66 class NavigationScheduler;
67 class Node; 67 class Node;
68 class NodeTraversal; 68 class NodeTraversal;
69 class Range; 69 class Range;
70 class LayoutView; 70 class LayoutView;
71 class TreeScope;
72 class ScriptController; 71 class ScriptController;
73 class SpellChecker; 72 class SpellChecker;
74 class TreeScope;
75 class WebFrameHostScheduler; 73 class WebFrameHostScheduler;
76 class WebFrameScheduler; 74 class WebFrameScheduler;
77 template <typename Strategy> class PositionWithAffinityTemplate; 75 template <typename Strategy> class PositionWithAffinityTemplate;
78 76
79 class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier, public WillBeHeapSupplementable<LocalFrame> { 77 class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier, public WillBeHeapSupplementable<LocalFrame> {
80 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(LocalFrame); 78 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(LocalFrame);
81 public: 79 public:
82 static PassRefPtrWillBeRawPtr<LocalFrame> create(FrameLoaderClient*, FrameHo st*, FrameOwner*); 80 static PassRefPtrWillBeRawPtr<LocalFrame> create(FrameLoaderClient*, FrameHo st*, FrameOwner*);
83 81
84 void init(); 82 void init();
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 DECLARE_WEAK_IDENTIFIER_MAP(LocalFrame); 319 DECLARE_WEAK_IDENTIFIER_MAP(LocalFrame);
322 320
323 } // namespace blink 321 } // namespace blink
324 322
325 // During refactoring, there are some places where we need to do type conversion s that 323 // During refactoring, there are some places where we need to do type conversion s that
326 // will not be needed once all instances of LocalFrame and RemoteFrame are sorte d out. 324 // will not be needed once all instances of LocalFrame and RemoteFrame are sorte d out.
327 // At that time this #define will be removed and all the uses of it will need to be corrected. 325 // At that time this #define will be removed and all the uses of it will need to be corrected.
328 #define toLocalFrameTemporary toLocalFrame 326 #define toLocalFrameTemporary toLocalFrame
329 327
330 #endif // LocalFrame_h 328 #endif // LocalFrame_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698