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

Side by Side Diff: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp

Issue 1826283004: Revert NotImplemented() changes in r383029 and r383047. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 /* 1 /*
2 * Copyright (C) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 27 matching lines...) Expand all
38 #include "core/frame/FrameView.h" 38 #include "core/frame/FrameView.h"
39 #include "core/frame/RemoteFrame.h" 39 #include "core/frame/RemoteFrame.h"
40 #include "core/frame/Settings.h" 40 #include "core/frame/Settings.h"
41 #include "core/input/EventHandler.h" 41 #include "core/input/EventHandler.h"
42 #include "core/layout/LayoutView.h" 42 #include "core/layout/LayoutView.h"
43 #include "core/layout/compositing/PaintLayerCompositor.h" 43 #include "core/layout/compositing/PaintLayerCompositor.h"
44 #include "core/page/ContextMenuController.h" 44 #include "core/page/ContextMenuController.h"
45 #include "core/page/FocusController.h" 45 #include "core/page/FocusController.h"
46 #include "core/page/Page.h" 46 #include "core/page/Page.h"
47 #include "platform/KeyboardCodes.h" 47 #include "platform/KeyboardCodes.h"
48 #include "platform/NotImplemented.h"
48 #include "public/platform/WebFrameScheduler.h" 49 #include "public/platform/WebFrameScheduler.h"
49 #include "public/web/WebWidgetClient.h" 50 #include "public/web/WebWidgetClient.h"
50 #include "web/ContextMenuAllowedScope.h" 51 #include "web/ContextMenuAllowedScope.h"
51 #include "web/WebDevToolsAgentImpl.h" 52 #include "web/WebDevToolsAgentImpl.h"
52 #include "web/WebInputEventConversion.h" 53 #include "web/WebInputEventConversion.h"
53 #include "web/WebLocalFrameImpl.h" 54 #include "web/WebLocalFrameImpl.h"
54 #include "web/WebPluginContainerImpl.h" 55 #include "web/WebPluginContainerImpl.h"
55 #include "web/WebRemoteFrameImpl.h" 56 #include "web/WebRemoteFrameImpl.h"
56 #include "web/WebViewFrameWidget.h" 57 #include "web/WebViewFrameWidget.h"
57 58
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 596
596 case WebTextDirectionLeftToRight: 597 case WebTextDirectionLeftToRight:
597 editor.setBaseWritingDirection(LeftToRightWritingDirection); 598 editor.setBaseWritingDirection(LeftToRightWritingDirection);
598 break; 599 break;
599 600
600 case WebTextDirectionRightToLeft: 601 case WebTextDirectionRightToLeft:
601 editor.setBaseWritingDirection(RightToLeftWritingDirection); 602 editor.setBaseWritingDirection(RightToLeftWritingDirection);
602 break; 603 break;
603 604
604 default: 605 default:
605 NOTIMPLEMENTED(); 606 notImplemented();
606 break; 607 break;
607 } 608 }
608 } 609 }
609 610
610 bool WebFrameWidgetImpl::isAcceleratedCompositingActive() const 611 bool WebFrameWidgetImpl::isAcceleratedCompositingActive() const
611 { 612 {
612 return m_isAcceleratedCompositingActive; 613 return m_isAcceleratedCompositingActive;
613 } 614 }
614 615
615 void WebFrameWidgetImpl::willCloseLayerTreeView() 616 void WebFrameWidgetImpl::willCloseLayerTreeView()
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
1092 1093
1093 HitTestResult WebFrameWidgetImpl::hitTestResultForRootFramePos(const IntPoint& p osInRootFrame) 1094 HitTestResult WebFrameWidgetImpl::hitTestResultForRootFramePos(const IntPoint& p osInRootFrame)
1094 { 1095 {
1095 IntPoint docPoint(m_localRoot->frame()->view()->rootFrameToContents(posInRoo tFrame)); 1096 IntPoint docPoint(m_localRoot->frame()->view()->rootFrameToContents(posInRoo tFrame));
1096 HitTestResult result = m_localRoot->frame()->eventHandler().hitTestResultAtP oint(docPoint, HitTestRequest::ReadOnly | HitTestRequest::Active); 1097 HitTestResult result = m_localRoot->frame()->eventHandler().hitTestResultAtP oint(docPoint, HitTestRequest::ReadOnly | HitTestRequest::Active);
1097 result.setToShadowHostIfInUserAgentShadowRoot(); 1098 result.setToShadowHostIfInUserAgentShadowRoot();
1098 return result; 1099 return result;
1099 } 1100 }
1100 1101
1101 } // namespace blink 1102 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/text/UnicodeUtilities.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698