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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 870833002: [android] Autofill popup behavior fixes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update expectations of old test and add a new test. Created 5 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 const GURL& url, 529 const GURL& url,
530 NavigationController::ReloadType reload_type) override; 530 NavigationController::ReloadType reload_type) override;
531 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, 531 void RequestOpenURL(RenderFrameHostImpl* render_frame_host,
532 const OpenURLParams& params) override; 532 const OpenURLParams& params) override;
533 bool ShouldPreserveAbortedURLs() override; 533 bool ShouldPreserveAbortedURLs() override;
534 534
535 // RenderWidgetHostDelegate -------------------------------------------------- 535 // RenderWidgetHostDelegate --------------------------------------------------
536 536
537 void RenderWidgetDeleted(RenderWidgetHostImpl* render_widget_host) override; 537 void RenderWidgetDeleted(RenderWidgetHostImpl* render_widget_host) override;
538 void RenderWidgetGotFocus(RenderWidgetHostImpl* render_widget_host) override; 538 void RenderWidgetGotFocus(RenderWidgetHostImpl* render_widget_host) override;
539 void RenderWidgetWasResized( 539 void RenderWidgetWasResized(RenderWidgetHostImpl* render_widget_host,
540 RenderWidgetHostImpl* render_widget_host) override; 540 bool width_changed) override;
541 bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 541 bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
542 bool* is_keyboard_shortcut) override; 542 bool* is_keyboard_shortcut) override;
543 void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) override; 543 void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) override;
544 bool HandleWheelEvent(const blink::WebMouseWheelEvent& event) override; 544 bool HandleWheelEvent(const blink::WebMouseWheelEvent& event) override;
545 bool PreHandleGestureEvent(const blink::WebGestureEvent& event) override; 545 bool PreHandleGestureEvent(const blink::WebGestureEvent& event) override;
546 bool HandleGestureEvent(const blink::WebGestureEvent& event) override; 546 bool HandleGestureEvent(const blink::WebGestureEvent& event) override;
547 void DidSendScreenRects(RenderWidgetHostImpl* rwh) override; 547 void DidSendScreenRects(RenderWidgetHostImpl* rwh) override;
548 BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override; 548 BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override;
549 BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager() 549 BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager()
550 override; 550 override;
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
1269 // Adds/removes a callback called on creation of each new WebContents. 1269 // Adds/removes a callback called on creation of each new WebContents.
1270 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1270 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1271 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1271 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1272 1272
1273 DISALLOW_COPY_AND_ASSIGN(FriendZone); 1273 DISALLOW_COPY_AND_ASSIGN(FriendZone);
1274 }; 1274 };
1275 1275
1276 } // namespace content 1276 } // namespace content
1277 1277
1278 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1278 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_impl.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698