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

Side by Side Diff: Source/WebCore/page/Frame.h

Issue 6532004: DO NOT SUBMIT (Closed) Base URL: git://git.webkit.org/WebKit.git@master
Patch Set: Address feedback Created 9 years, 9 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
« no previous file with comments | « Source/WebCore/dom/Range.cpp ('k') | Source/WebCore/page/Frame.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 String displayStringModifiedByEncoding(const String& str) const 177 String displayStringModifiedByEncoding(const String& str) const
178 { 178 {
179 return document() ? document()->displayStringModifiedByEncoding(str) : str; 179 return document() ? document()->displayStringModifiedByEncoding(str) : str;
180 } 180 }
181 181
182 DragImageRef nodeImage(Node*); 182 DragImageRef nodeImage(Node*);
183 DragImageRef dragImageForSelection(); 183 DragImageRef dragImageForSelection();
184 184
185 VisiblePosition visiblePositionForPoint(const IntPoint& framePoint); 185 VisiblePosition visiblePositionForPoint(const IntPoint& framePoint);
186 Document* documentAtPoint(const IntPoint& windowPoint); 186 Document* documentAtPoint(const IntPoint& windowPoint);
187 PassRefPtr<Range> rangeForPoint(const IntPoint& framePoint);
187 188
188 String searchForLabelsAboveCell(RegularExpression*, HTMLTableCellElement *, size_t* resultDistanceFromStartOfCell); 189 String searchForLabelsAboveCell(RegularExpression*, HTMLTableCellElement *, size_t* resultDistanceFromStartOfCell);
189 String searchForLabelsBeforeElement(const Vector<String>& labels, Elemen t*, size_t* resultDistance, bool* resultIsInCellAbove); 190 String searchForLabelsBeforeElement(const Vector<String>& labels, Elemen t*, size_t* resultDistance, bool* resultIsInCellAbove);
190 String matchLabelsAgainstElement(const Vector<String>& labels, Element*) ; 191 String matchLabelsAgainstElement(const Vector<String>& labels, Element*) ;
191 192
192 #if PLATFORM(MAC) 193 #if PLATFORM(MAC)
193 NSString* searchForLabelsBeforeElement(NSArray* labels, Element*, size_t * resultDistance, bool* resultIsInCellAbove); 194 NSString* searchForLabelsBeforeElement(NSArray* labels, Element*, size_t * resultDistance, bool* resultIsInCellAbove);
194 NSString* matchLabelsAgainstElement(NSArray* labels, Element*); 195 NSString* matchLabelsAgainstElement(NSArray* labels, Element*);
195 196
196 NSImage* selectionImage(bool forceBlackText = false) const; 197 NSImage* selectionImage(bool forceBlackText = false) const;
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 } 363 }
363 364
364 inline EventHandler* Frame::eventHandler() const 365 inline EventHandler* Frame::eventHandler() const
365 { 366 {
366 return &m_eventHandler; 367 return &m_eventHandler;
367 } 368 }
368 369
369 } // namespace WebCore 370 } // namespace WebCore
370 371
371 #endif // Frame_h 372 #endif // Frame_h
OLDNEW
« no previous file with comments | « Source/WebCore/dom/Range.cpp ('k') | Source/WebCore/page/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698