OLD | NEW |
---|---|
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/renderer_host/render_widget_host_view_aura.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_aura.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
484 if (GetTextInputManager()) | 484 if (GetTextInputManager()) |
485 GetTextInputManager()->AddObserver(this); | 485 GetTextInputManager()->AddObserver(this); |
486 | 486 |
487 bool overscroll_enabled = base::CommandLine::ForCurrentProcess()-> | 487 bool overscroll_enabled = base::CommandLine::ForCurrentProcess()-> |
488 GetSwitchValueASCII(switches::kOverscrollHistoryNavigation) != "0"; | 488 GetSwitchValueASCII(switches::kOverscrollHistoryNavigation) != "0"; |
489 SetOverscrollControllerEnabled(overscroll_enabled); | 489 SetOverscrollControllerEnabled(overscroll_enabled); |
490 | 490 |
491 selection_controller_client_.reset( | 491 selection_controller_client_.reset( |
492 new TouchSelectionControllerClientAura(this)); | 492 new TouchSelectionControllerClientAura(this)); |
493 CreateSelectionController(); | 493 CreateSelectionController(); |
494 | |
495 RenderViewHost* rvh = RenderViewHost::From(host_); | |
496 if (rvh) { | |
497 WebPreferences prefs = rvh->GetWebkitPreferences(); | |
498 // TODO(mostynb): actually use prefs. Landing this as a separate CL | |
499 // first to rebaseline some unreliable layout tests. | |
500 (void)prefs; | |
Avi (use Gerrit)
2016/07/20 18:25:36
ignore_result() from base/macros.h.
Mostyn Bramley-Moore
2016/07/20 18:48:38
Done.
| |
501 } | |
494 } | 502 } |
495 | 503 |
496 //////////////////////////////////////////////////////////////////////////////// | 504 //////////////////////////////////////////////////////////////////////////////// |
497 // RenderWidgetHostViewAura, RenderWidgetHostView implementation: | 505 // RenderWidgetHostViewAura, RenderWidgetHostView implementation: |
498 | 506 |
499 bool RenderWidgetHostViewAura::OnMessageReceived( | 507 bool RenderWidgetHostViewAura::OnMessageReceived( |
500 const IPC::Message& message) { | 508 const IPC::Message& message) { |
501 bool handled = true; | 509 bool handled = true; |
502 IPC_BEGIN_MESSAGE_MAP(RenderWidgetHostViewAura, message) | 510 IPC_BEGIN_MESSAGE_MAP(RenderWidgetHostViewAura, message) |
503 IPC_MESSAGE_HANDLER(ViewHostMsg_SetNeedsBeginFrames, | 511 IPC_MESSAGE_HANDLER(ViewHostMsg_SetNeedsBeginFrames, |
(...skipping 2497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3001 | 3009 |
3002 //////////////////////////////////////////////////////////////////////////////// | 3010 //////////////////////////////////////////////////////////////////////////////// |
3003 // RenderWidgetHostViewBase, public: | 3011 // RenderWidgetHostViewBase, public: |
3004 | 3012 |
3005 // static | 3013 // static |
3006 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { | 3014 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { |
3007 GetScreenInfoForWindow(results, NULL); | 3015 GetScreenInfoForWindow(results, NULL); |
3008 } | 3016 } |
3009 | 3017 |
3010 } // namespace content | 3018 } // namespace content |
OLD | NEW |