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

Side by Side Diff: webkit/glue/chrome_client_impl.h

Issue 147240: Review Request: display tooltip in the directionality of its element's (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 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 | « no previous file | webkit/glue/chrome_client_impl.cc » ('j') | webkit/glue/chrome_client_impl.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ 5 #ifndef WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_
6 #define WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ 6 #define WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 9
10 MSVC_PUSH_WARNING_LEVEL(0); 10 MSVC_PUSH_WARNING_LEVEL(0);
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 virtual WebCore::IntPoint screenToWindow(const WebCore::IntPoint&) const; 105 virtual WebCore::IntPoint screenToWindow(const WebCore::IntPoint&) const;
106 virtual WebCore::IntRect windowToScreen(const WebCore::IntRect&) const; 106 virtual WebCore::IntRect windowToScreen(const WebCore::IntRect&) const;
107 virtual PlatformWidget platformWindow() const; 107 virtual PlatformWidget platformWindow() const;
108 virtual void contentsSizeChanged(WebCore::Frame*, 108 virtual void contentsSizeChanged(WebCore::Frame*,
109 const WebCore::IntSize&) const; 109 const WebCore::IntSize&) const;
110 virtual void scrollRectIntoView(const WebCore::IntRect&, const WebCore::Scroll View*) const { } 110 virtual void scrollRectIntoView(const WebCore::IntRect&, const WebCore::Scroll View*) const { }
111 111
112 virtual void mouseDidMoveOverElement(const WebCore::HitTestResult& result, 112 virtual void mouseDidMoveOverElement(const WebCore::HitTestResult& result,
113 unsigned modifierFlags); 113 unsigned modifierFlags);
114 114
115 virtual void setToolTip(const WebCore::String& tooltip_text); 115 virtual void setToolTip(const WebCore::String& tooltip_text, WebCore::TextDire ction dir);
idana 2009/07/21 00:45:26 Can you put the second parameter on its own line (
116 116
117 virtual void print(WebCore::Frame*); 117 virtual void print(WebCore::Frame*);
118 118
119 virtual void exceededDatabaseQuota(WebCore::Frame*, 119 virtual void exceededDatabaseQuota(WebCore::Frame*,
120 const WebCore::String& databaseName); 120 const WebCore::String& databaseName);
121 121
122 virtual void requestGeolocationPermissionForFrame(WebCore::Frame*, WebCore::Ge olocation*) { } 122 virtual void requestGeolocationPermissionForFrame(WebCore::Frame*, WebCore::Ge olocation*) { }
123 123
124 virtual void runOpenPanel(WebCore::Frame*, 124 virtual void runOpenPanel(WebCore::Frame*,
125 PassRefPtr<WebCore::FileChooser>); 125 PassRefPtr<WebCore::FileChooser>);
(...skipping 18 matching lines...) Expand all
144 bool toolbars_visible_; 144 bool toolbars_visible_;
145 bool statusbar_visible_; 145 bool statusbar_visible_;
146 bool scrollbars_visible_; 146 bool scrollbars_visible_;
147 bool menubar_visible_; 147 bool menubar_visible_;
148 bool resizable_; 148 bool resizable_;
149 // Set to true if the next SetCursor is to be ignored. 149 // Set to true if the next SetCursor is to be ignored.
150 bool ignore_next_set_cursor_; 150 bool ignore_next_set_cursor_;
151 }; 151 };
152 152
153 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ 153 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | webkit/glue/chrome_client_impl.cc » ('j') | webkit/glue/chrome_client_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698