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

Side by Side Diff: third_party/WebKit/Source/web/tests/WebViewTest.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
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 24 matching lines...) Expand all
35 #include "bindings/core/v8/V8Document.h" 35 #include "bindings/core/v8/V8Document.h"
36 #include "core/dom/Document.h" 36 #include "core/dom/Document.h"
37 #include "core/dom/DocumentUserGestureToken.h" 37 #include "core/dom/DocumentUserGestureToken.h"
38 #include "core/dom/Element.h" 38 #include "core/dom/Element.h"
39 #include "core/dom/Fullscreen.h" 39 #include "core/dom/Fullscreen.h"
40 #include "core/dom/NodeComputedStyle.h" 40 #include "core/dom/NodeComputedStyle.h"
41 #include "core/editing/FrameSelection.h" 41 #include "core/editing/FrameSelection.h"
42 #include "core/editing/InputMethodController.h" 42 #include "core/editing/InputMethodController.h"
43 #include "core/editing/markers/DocumentMarkerController.h" 43 #include "core/editing/markers/DocumentMarkerController.h"
44 #include "core/frame/EventHandlerRegistry.h" 44 #include "core/frame/EventHandlerRegistry.h"
45 #include "core/frame/FrameHost.h"
46 #include "core/frame/FrameView.h" 45 #include "core/frame/FrameView.h"
47 #include "core/frame/LocalFrame.h" 46 #include "core/frame/LocalFrame.h"
48 #include "core/frame/Settings.h" 47 #include "core/frame/Settings.h"
49 #include "core/frame/VisualViewport.h" 48 #include "core/frame/VisualViewport.h"
50 #include "core/html/HTMLIFrameElement.h" 49 #include "core/html/HTMLIFrameElement.h"
51 #include "core/html/HTMLInputElement.h" 50 #include "core/html/HTMLInputElement.h"
52 #include "core/html/HTMLTextAreaElement.h" 51 #include "core/html/HTMLTextAreaElement.h"
53 #include "core/layout/api/LayoutViewItem.h" 52 #include "core/layout/api/LayoutViewItem.h"
54 #include "core/loader/DocumentLoader.h" 53 #include "core/loader/DocumentLoader.h"
55 #include "core/loader/FrameLoadRequest.h" 54 #include "core/loader/FrameLoadRequest.h"
(...skipping 4372 matching lines...) Expand 10 before | Expand all | Expand 10 after
4428 EXPECT_FALSE(frameView->visualViewportSuppliesScrollbars()); 4427 EXPECT_FALSE(frameView->visualViewportSuppliesScrollbars());
4429 if (RuntimeEnabledFeatures::rootLayerScrollingEnabled()) { 4428 if (RuntimeEnabledFeatures::rootLayerScrollingEnabled()) {
4430 EXPECT_NE(nullptr, 4429 EXPECT_NE(nullptr,
4431 frameView->layoutViewportScrollableArea()->verticalScrollbar()); 4430 frameView->layoutViewportScrollableArea()->verticalScrollbar());
4432 } else { 4431 } else {
4433 EXPECT_NE(nullptr, frameView->verticalScrollbar()); 4432 EXPECT_NE(nullptr, frameView->verticalScrollbar());
4434 } 4433 }
4435 } 4434 }
4436 4435
4437 } // namespace blink 4436 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698