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

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

Issue 1934423002: [NOT FOR REVIEW] [reland] Browser Side Text Input State Tracking for OOPIF (Aura Only) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enhancing code Created 4 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
« no previous file with comments | « content/browser/web_contents/web_contents_impl.h ('k') | content/content_browser.gypi » ('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) 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 #include "content/browser/web_contents/web_contents_impl.h" 5 #include "content/browser/web_contents/web_contents_impl.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <cmath> 9 #include <cmath>
10 #include <utility> 10 #include <utility>
(...skipping 2345 matching lines...) Expand 10 before | Expand all | Expand 10 after
2356 static_cast<RenderWidgetHostViewBase*>(GetRenderWidgetHostView()); 2356 static_cast<RenderWidgetHostViewBase*>(GetRenderWidgetHostView());
2357 if (rwhv) { 2357 if (rwhv) {
2358 SendPageMessage(new PageMsg_UpdateWindowScreenRect( 2358 SendPageMessage(new PageMsg_UpdateWindowScreenRect(
2359 MSG_ROUTING_NONE, rwhv->GetBoundsInRootWindow())); 2359 MSG_ROUTING_NONE, rwhv->GetBoundsInRootWindow()));
2360 } 2360 }
2361 2361
2362 if (browser_plugin_embedder_) 2362 if (browser_plugin_embedder_)
2363 browser_plugin_embedder_->DidSendScreenRects(); 2363 browser_plugin_embedder_->DidSendScreenRects();
2364 } 2364 }
2365 2365
2366 TextInputManager* WebContentsImpl::GetTextInputManager() {
2367 if (GetOuterWebContents()) {
2368 if (text_input_manager_) {
2369 // Since the outer WebContents exists, we should destroy
2370 // |text_input_manager_| which will in turn notify all the
2371 // RenderWidgetHostViews.
2372 text_input_manager_.reset(nullptr);
2373 }
2374 return GetOuterWebContents()->GetTextInputManager();
2375 }
2376
2377 if (!text_input_manager_)
2378 text_input_manager_.reset(new TextInputManager());
2379
2380 return text_input_manager_.get();
2381 }
2382
2366 BrowserAccessibilityManager* 2383 BrowserAccessibilityManager*
2367 WebContentsImpl::GetRootBrowserAccessibilityManager() { 2384 WebContentsImpl::GetRootBrowserAccessibilityManager() {
2368 RenderFrameHostImpl* rfh = GetMainFrame(); 2385 RenderFrameHostImpl* rfh = GetMainFrame();
2369 return rfh ? rfh->browser_accessibility_manager() : nullptr; 2386 return rfh ? rfh->browser_accessibility_manager() : nullptr;
2370 } 2387 }
2371 2388
2372 BrowserAccessibilityManager* 2389 BrowserAccessibilityManager*
2373 WebContentsImpl::GetOrCreateRootBrowserAccessibilityManager() { 2390 WebContentsImpl::GetOrCreateRootBrowserAccessibilityManager() {
2374 RenderFrameHostImpl* rfh = GetMainFrame(); 2391 RenderFrameHostImpl* rfh = GetMainFrame();
2375 return rfh ? rfh->GetOrCreateBrowserAccessibilityManager() : nullptr; 2392 return rfh ? rfh->GetOrCreateBrowserAccessibilityManager() : nullptr;
(...skipping 2644 matching lines...) Expand 10 before | Expand all | Expand 10 after
5020 for (RenderViewHost* render_view_host : render_view_host_set) 5037 for (RenderViewHost* render_view_host : render_view_host_set)
5021 render_view_host->OnWebkitPreferencesChanged(); 5038 render_view_host->OnWebkitPreferencesChanged();
5022 } 5039 }
5023 5040
5024 void WebContentsImpl::SetJavaScriptDialogManagerForTesting( 5041 void WebContentsImpl::SetJavaScriptDialogManagerForTesting(
5025 JavaScriptDialogManager* dialog_manager) { 5042 JavaScriptDialogManager* dialog_manager) {
5026 dialog_manager_ = dialog_manager; 5043 dialog_manager_ = dialog_manager;
5027 } 5044 }
5028 5045
5029 } // namespace content 5046 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698