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

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

Issue 337032: Show status bubble for links that have keyboard focus.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 1 month 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 | « webkit/api/public/WebViewClient.h ('k') | webkit/glue/chrome_client_impl.cc » ('j') | no next file with comments »
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 "ChromeClientChromium.h" 8 #include "ChromeClientChromium.h"
9 9
10 class WebViewImpl; 10 class WebViewImpl;
(...skipping 26 matching lines...) Expand all
37 virtual WebCore::FloatRect pageRect(); 37 virtual WebCore::FloatRect pageRect();
38 38
39 virtual float scaleFactor(); 39 virtual float scaleFactor();
40 40
41 virtual void focus(); 41 virtual void focus();
42 virtual void unfocus(); 42 virtual void unfocus();
43 43
44 virtual bool canTakeFocus(WebCore::FocusDirection); 44 virtual bool canTakeFocus(WebCore::FocusDirection);
45 virtual void takeFocus(WebCore::FocusDirection); 45 virtual void takeFocus(WebCore::FocusDirection);
46 46
47 virtual void focusedNodeChanged(WebCore::Node*);
48
47 virtual WebCore::Page* createWindow(WebCore::Frame*, 49 virtual WebCore::Page* createWindow(WebCore::Frame*,
48 const WebCore::FrameLoadRequest&, 50 const WebCore::FrameLoadRequest&,
49 const WebCore::WindowFeatures&); 51 const WebCore::WindowFeatures&);
50 virtual void show(); 52 virtual void show();
51 53
52 virtual bool canRunModal(); 54 virtual bool canRunModal();
53 virtual void runModal(); 55 virtual void runModal();
54 56
55 virtual void setToolbarsVisible(bool); 57 virtual void setToolbarsVisible(bool);
56 virtual bool toolbarsVisible(); 58 virtual bool toolbarsVisible();
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 bool toolbars_visible_; 157 bool toolbars_visible_;
156 bool statusbar_visible_; 158 bool statusbar_visible_;
157 bool scrollbars_visible_; 159 bool scrollbars_visible_;
158 bool menubar_visible_; 160 bool menubar_visible_;
159 bool resizable_; 161 bool resizable_;
160 // Set to true if the next SetCursor is to be ignored. 162 // Set to true if the next SetCursor is to be ignored.
161 bool ignore_next_set_cursor_; 163 bool ignore_next_set_cursor_;
162 }; 164 };
163 165
164 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_ 166 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/api/public/WebViewClient.h ('k') | webkit/glue/chrome_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698