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

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

Issue 17455: Autofill popup dismissed when page loses focus (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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 | « chrome/renderer/render_widget.cc ('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 "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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 109
110 virtual void print(WebCore::Frame*); 110 virtual void print(WebCore::Frame*);
111 111
112 virtual void exceededDatabaseQuota(WebCore::Frame*, 112 virtual void exceededDatabaseQuota(WebCore::Frame*,
113 const WebCore::String& databaseName); 113 const WebCore::String& databaseName);
114 114
115 virtual void runOpenPanel(WebCore::Frame*, 115 virtual void runOpenPanel(WebCore::Frame*,
116 PassRefPtr<WebCore::FileChooser>); 116 PassRefPtr<WebCore::FileChooser>);
117 virtual void popupOpened(WebCore::FramelessScrollView* popup_view, 117 virtual void popupOpened(WebCore::FramelessScrollView* popup_view,
118 const WebCore::IntRect& bounds, 118 const WebCore::IntRect& bounds,
119 bool focus_on_show); 119 bool activatable);
120 120
121 void SetCursor(const WebCursor& cursor); 121 void SetCursor(const WebCursor& cursor);
122 122
123 virtual void enableSuddenTermination(); 123 virtual void enableSuddenTermination();
124 virtual void disableSuddenTermination(); 124 virtual void disableSuddenTermination();
125 125
126 virtual void formStateDidChange(const WebCore::Node*); 126 virtual void formStateDidChange(const WebCore::Node*);
127 127
128 private: 128 private:
129 WebViewImpl* webview_; // weak pointer 129 WebViewImpl* webview_; // weak pointer
130 bool toolbars_visible_; 130 bool toolbars_visible_;
131 bool statusbar_visible_; 131 bool statusbar_visible_;
132 bool scrollbars_visible_; 132 bool scrollbars_visible_;
133 bool menubar_visible_; 133 bool menubar_visible_;
134 bool resizable_; 134 bool resizable_;
135 }; 135 };
136 136
137 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H__ 137 #endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H__
138 138
OLDNEW
« no previous file with comments | « chrome/renderer/render_widget.cc ('k') | webkit/glue/chrome_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698