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

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

Issue 2774823002: Remove FrameHost class (Closed)
Patch Set: Rebase Created 3 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) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 #include "core/editing/InputMethodController.h" 45 #include "core/editing/InputMethodController.h"
46 #include "core/editing/iterators/TextIterator.h" 46 #include "core/editing/iterators/TextIterator.h"
47 #include "core/editing/markers/DocumentMarkerController.h" 47 #include "core/editing/markers/DocumentMarkerController.h"
48 #include "core/editing/serializers/HTMLInterchange.h" 48 #include "core/editing/serializers/HTMLInterchange.h"
49 #include "core/editing/serializers/Serialization.h" 49 #include "core/editing/serializers/Serialization.h"
50 #include "core/events/KeyboardEvent.h" 50 #include "core/events/KeyboardEvent.h"
51 #include "core/events/UIEventWithKeyState.h" 51 #include "core/events/UIEventWithKeyState.h"
52 #include "core/events/WheelEvent.h" 52 #include "core/events/WheelEvent.h"
53 #include "core/frame/BrowserControls.h" 53 #include "core/frame/BrowserControls.h"
54 #include "core/frame/EventHandlerRegistry.h" 54 #include "core/frame/EventHandlerRegistry.h"
55 #include "core/frame/FrameHost.h"
56 #include "core/frame/FrameView.h" 55 #include "core/frame/FrameView.h"
57 #include "core/frame/LocalFrame.h" 56 #include "core/frame/LocalFrame.h"
58 #include "core/frame/LocalFrameClient.h" 57 #include "core/frame/LocalFrameClient.h"
59 #include "core/frame/PageScaleConstraintsSet.h" 58 #include "core/frame/PageScaleConstraintsSet.h"
60 #include "core/frame/RemoteFrame.h" 59 #include "core/frame/RemoteFrame.h"
61 #include "core/frame/Settings.h" 60 #include "core/frame/Settings.h"
62 #include "core/frame/UseCounter.h" 61 #include "core/frame/UseCounter.h"
63 #include "core/frame/VisualViewport.h" 62 #include "core/frame/VisualViewport.h"
64 #include "core/html/HTMLMediaElement.h" 63 #include "core/html/HTMLMediaElement.h"
65 #include "core/html/HTMLPlugInElement.h" 64 #include "core/html/HTMLPlugInElement.h"
(...skipping 4111 matching lines...) Expand 10 before | Expand all | Expand 10 after
4177 if (focusedFrame->localFrameRoot() != mainFrameImpl()->frame()) 4176 if (focusedFrame->localFrameRoot() != mainFrameImpl()->frame())
4178 return nullptr; 4177 return nullptr;
4179 return focusedFrame; 4178 return focusedFrame;
4180 } 4179 }
4181 4180
4182 LocalFrame* WebViewImpl::focusedLocalFrameAvailableForIme() const { 4181 LocalFrame* WebViewImpl::focusedLocalFrameAvailableForIme() const {
4183 return m_imeAcceptEvents ? focusedLocalFrameInWidget() : nullptr; 4182 return m_imeAcceptEvents ? focusedLocalFrameInWidget() : nullptr;
4184 } 4183 }
4185 4184
4186 } // namespace blink 4185 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebPagePopupImpl.cpp ('k') | third_party/WebKit/Source/web/tests/BrowserControlsTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698