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

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: Fix compile issue Created 5 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
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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 explicit FrameNavigationDisabler(LocalFrame&); 338 explicit FrameNavigationDisabler(LocalFrame&);
341 ~FrameNavigationDisabler(); 339 ~FrameNavigationDisabler();
342 340
343 private: 341 private:
344 RawPtrWillBeMember<LocalFrame> m_frame; 342 RawPtrWillBeMember<LocalFrame> m_frame;
345 }; 343 };
346 344
347 } // namespace blink 345 } // namespace blink
348 346
349 #endif // LocalFrame_h 347 #endif // LocalFrame_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698