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

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

Issue 1652483002: Browser Side Text Input State Tracking for OOPIF. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Using the Old Logic for Determining the State Change Created 4 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
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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 // void Paste() override; 593 // void Paste() override;
594 // void SelectAll() override; 594 // void SelectAll() override;
595 void MoveRangeSelectionExtent(const gfx::Point& extent) override; 595 void MoveRangeSelectionExtent(const gfx::Point& extent) override;
596 void SelectRange(const gfx::Point& base, const gfx::Point& extent) override; 596 void SelectRange(const gfx::Point& base, const gfx::Point& extent) override;
597 void AdjustSelectionByCharacterOffset(int start_adjust, int end_adjust) 597 void AdjustSelectionByCharacterOffset(int start_adjust, int end_adjust)
598 override; 598 override;
599 RenderWidgetHostInputEventRouter* GetInputEventRouter() override; 599 RenderWidgetHostInputEventRouter* GetInputEventRouter() override;
600 void ReplicatePageFocus(bool is_focused) override; 600 void ReplicatePageFocus(bool is_focused) override;
601 RenderWidgetHostImpl* GetFocusedRenderWidgetHost( 601 RenderWidgetHostImpl* GetFocusedRenderWidgetHost(
602 RenderWidgetHostImpl* receiving_widget) override; 602 RenderWidgetHostImpl* receiving_widget) override;
603 RenderWidgetHostViewBase* GetFocusedView() override;
603 void RendererUnresponsive(RenderWidgetHostImpl* render_widget_host) override; 604 void RendererUnresponsive(RenderWidgetHostImpl* render_widget_host) override;
604 void RendererResponsive(RenderWidgetHostImpl* render_widget_host) override; 605 void RendererResponsive(RenderWidgetHostImpl* render_widget_host) override;
605 void RequestToLockMouse(RenderWidgetHostImpl* render_widget_host, 606 void RequestToLockMouse(RenderWidgetHostImpl* render_widget_host,
606 bool user_gesture, 607 bool user_gesture,
607 bool last_unlocked_by_target) override; 608 bool last_unlocked_by_target) override;
608 gfx::Rect GetRootWindowResizerRect( 609 gfx::Rect GetRootWindowResizerRect(
609 RenderWidgetHostImpl* render_widget_host) const override; 610 RenderWidgetHostImpl* render_widget_host) const override;
610 bool IsFullscreenForCurrentTab( 611 bool IsFullscreenForCurrentTab(
611 RenderWidgetHostImpl* render_widget_host) const override; 612 RenderWidgetHostImpl* render_widget_host) const override;
612 blink::WebDisplayMode GetDisplayMode( 613 blink::WebDisplayMode GetDisplayMode(
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
1352 // Adds/removes a callback called on creation of each new WebContents. 1353 // Adds/removes a callback called on creation of each new WebContents.
1353 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1354 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1354 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1355 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1355 1356
1356 DISALLOW_COPY_AND_ASSIGN(FriendZone); 1357 DISALLOW_COPY_AND_ASSIGN(FriendZone);
1357 }; 1358 };
1358 1359
1359 } // namespace content 1360 } // namespace content
1360 1361
1361 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1362 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698