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

Side by Side Diff: Source/core/frame/Frame.h

Issue 27030014: Remove Backslash-as-JPY hack (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: TextCodec/Encoding added Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/editing/TextIterator.cpp ('k') | Source/core/frame/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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 #if ENABLE(ORIENTATION_EVENTS) 141 #if ENABLE(ORIENTATION_EVENTS)
142 // Orientation is the interface orientation in degrees. Some examples ar e: 142 // Orientation is the interface orientation in degrees. Some examples ar e:
143 // 0 is straight up; -90 is when the device is rotated 90 clockwise; 143 // 0 is straight up; -90 is when the device is rotated 90 clockwise;
144 // 90 is when rotated counter clockwise. 144 // 90 is when rotated counter clockwise.
145 void sendOrientationChangeEvent(int orientation); 145 void sendOrientationChangeEvent(int orientation);
146 int orientation() const { return m_orientation; } 146 int orientation() const { return m_orientation; }
147 #endif 147 #endif
148 148
149 String documentTypeString() const; 149 String documentTypeString() const;
150 150
151 String displayStringModifiedByEncoding(const String&) const;
152
153 PassOwnPtr<DragImage> nodeImage(Node*); 151 PassOwnPtr<DragImage> nodeImage(Node*);
154 PassOwnPtr<DragImage> dragImageForSelection(); 152 PassOwnPtr<DragImage> dragImageForSelection();
155 153
156 String selectedText() const; 154 String selectedText() const;
157 String selectedTextForClipboard() const; 155 String selectedTextForClipboard() const;
158 156
159 VisiblePosition visiblePositionForPoint(const IntPoint& framePoint); 157 VisiblePosition visiblePositionForPoint(const IntPoint& framePoint);
160 Document* documentAtPoint(const IntPoint& windowPoint); 158 Document* documentAtPoint(const IntPoint& windowPoint);
161 PassRefPtr<Range> rangeForPoint(const IntPoint& framePoint); 159 PassRefPtr<Range> rangeForPoint(const IntPoint& framePoint);
162 160
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 } 278 }
281 279
282 inline EventHandler* Frame::eventHandler() const 280 inline EventHandler* Frame::eventHandler() const
283 { 281 {
284 return m_eventHandler.get(); 282 return m_eventHandler.get();
285 } 283 }
286 284
287 } // namespace WebCore 285 } // namespace WebCore
288 286
289 #endif // Frame_h 287 #endif // Frame_h
OLDNEW
« no previous file with comments | « Source/core/editing/TextIterator.cpp ('k') | Source/core/frame/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698