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

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

Issue 28126: Hide the autocomplete popup when the browser window is moved (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | « webkit/glue/webview.h ('k') | webkit/glue/webview_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_WEBVIEW_IMPL_H__ 5 #ifndef WEBKIT_GLUE_WEBVIEW_IMPL_H__
6 #define WEBKIT_GLUE_WEBVIEW_IMPL_H__ 6 #define WEBKIT_GLUE_WEBVIEW_IMPL_H__
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 int client_x, int client_y, int screen_x, int screen_y); 97 int client_x, int client_y, int screen_x, int screen_y);
98 virtual bool DragTargetDragOver( 98 virtual bool DragTargetDragOver(
99 int client_x, int client_y, int screen_x, int screen_y); 99 int client_x, int client_y, int screen_x, int screen_y);
100 virtual void DragTargetDragLeave(); 100 virtual void DragTargetDragLeave();
101 virtual void DragTargetDrop( 101 virtual void DragTargetDrop(
102 int client_x, int client_y, int screen_x, int screen_y); 102 int client_x, int client_y, int screen_x, int screen_y);
103 virtual void AutofillSuggestionsForNode( 103 virtual void AutofillSuggestionsForNode(
104 int64 node_id, 104 int64 node_id,
105 const std::vector<std::wstring>& suggestions, 105 const std::vector<std::wstring>& suggestions,
106 int default_suggestion_index); 106 int default_suggestion_index);
107 virtual void HideAutofillPopup();
107 108
108 // WebViewImpl 109 // WebViewImpl
109 110
110 const gfx::Size& size() const { return size_; } 111 const gfx::Size& size() const { return size_; }
111 112
112 const gfx::Point& last_mouse_down_point() const { 113 const gfx::Point& last_mouse_down_point() const {
113 return last_mouse_down_point_; 114 return last_mouse_down_point_;
114 } 115 }
115 116
116 WebCore::Frame* GetFocusedWebCoreFrame(); 117 WebCore::Frame* GetFocusedWebCoreFrame();
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 return g_current_input_event; 312 return g_current_input_event;
312 } 313 }
313 private: 314 private:
314 static const WebInputEvent* g_current_input_event; 315 static const WebInputEvent* g_current_input_event;
315 316
316 DISALLOW_EVIL_CONSTRUCTORS(WebViewImpl); 317 DISALLOW_EVIL_CONSTRUCTORS(WebViewImpl);
317 }; 318 };
318 319
319 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H__ 320 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H__
320 321
OLDNEW
« no previous file with comments | « webkit/glue/webview.h ('k') | webkit/glue/webview_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698