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

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

Issue 670653005: Fix Flash fullscreen focus regressions, and add interactive_ui_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove consts in ObjC code. Created 6 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
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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 RenderFrameHostImpl* render_frame_host, 508 RenderFrameHostImpl* render_frame_host,
509 const GURL& url, 509 const GURL& url,
510 NavigationController::ReloadType reload_type) override; 510 NavigationController::ReloadType reload_type) override;
511 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, 511 void RequestOpenURL(RenderFrameHostImpl* render_frame_host,
512 const OpenURLParams& params) override; 512 const OpenURLParams& params) override;
513 bool ShouldPreserveAbortedURLs() override; 513 bool ShouldPreserveAbortedURLs() override;
514 514
515 // RenderWidgetHostDelegate -------------------------------------------------- 515 // RenderWidgetHostDelegate --------------------------------------------------
516 516
517 void RenderWidgetDeleted(RenderWidgetHostImpl* render_widget_host) override; 517 void RenderWidgetDeleted(RenderWidgetHostImpl* render_widget_host) override;
518 void RenderWidgetGotFocus(RenderWidgetHostImpl* render_widget_host) override;
518 bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 519 bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
519 bool* is_keyboard_shortcut) override; 520 bool* is_keyboard_shortcut) override;
520 void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) override; 521 void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) override;
521 bool HandleWheelEvent(const blink::WebMouseWheelEvent& event) override; 522 bool HandleWheelEvent(const blink::WebMouseWheelEvent& event) override;
522 bool PreHandleGestureEvent(const blink::WebGestureEvent& event) override; 523 bool PreHandleGestureEvent(const blink::WebGestureEvent& event) override;
523 bool HandleGestureEvent(const blink::WebGestureEvent& event) override; 524 bool HandleGestureEvent(const blink::WebGestureEvent& event) override;
524 void DidSendScreenRects(RenderWidgetHostImpl* rwh) override; 525 void DidSendScreenRects(RenderWidgetHostImpl* rwh) override;
525 BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override; 526 BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override;
526 BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager() 527 BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager()
527 override; 528 override;
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
1213 scoped_ptr<WebContentsAudioMuter> audio_muter_; 1214 scoped_ptr<WebContentsAudioMuter> audio_muter_;
1214 1215
1215 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; 1216 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_;
1216 1217
1217 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1218 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1218 }; 1219 };
1219 1220
1220 } // namespace content 1221 } // namespace content
1221 1222
1222 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1223 #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