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

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

Issue 115751: Update webkit to r44122... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | « DEPS ('k') | webkit/glue/dom_operations.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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 bool handle_external); 130 bool handle_external);
131 void popupOpenedInternal(WebCore::PopupContainer* popup_container, 131 void popupOpenedInternal(WebCore::PopupContainer* popup_container,
132 const WebCore::IntRect& bounds, 132 const WebCore::IntRect& bounds,
133 bool activatable); 133 bool activatable);
134 134
135 void SetCursor(const WebCursor& cursor); 135 void SetCursor(const WebCursor& cursor);
136 void SetCursorForPlugin(const WebCursor& cursor); 136 void SetCursorForPlugin(const WebCursor& cursor);
137 137
138 virtual void formStateDidChange(const WebCore::Node*); 138 virtual void formStateDidChange(const WebCore::Node*);
139 139
140 virtual WebCore::HTMLParserQuirks* createHTMLParserQuirks() { return 0; } 140 virtual PassOwnPtr<WebCore::HTMLParserQuirks> createHTMLParserQuirks() { retur n 0; }
141 141
142 private: 142 private:
143 WebViewImpl* webview_; // weak pointer 143 WebViewImpl* webview_; // weak pointer
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 | « DEPS ('k') | webkit/glue/dom_operations.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698