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

Side by Side Diff: third_party/WebKit/Source/web/tests/FrameLoaderClientImplTest.cpp

Issue 1991273003: Fire visibilityChange event on out-of-process iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments Created 4 years, 5 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 MOCK_METHOD0(userAgentOverride, WebString()); 56 MOCK_METHOD0(userAgentOverride, WebString());
57 }; 57 };
58 58
59 class FrameLoaderClientImplTest : public ::testing::Test { 59 class FrameLoaderClientImplTest : public ::testing::Test {
60 protected: 60 protected:
61 void SetUp() override 61 void SetUp() override
62 { 62 {
63 ON_CALL(m_webFrameClient, userAgentOverride()).WillByDefault(Return(WebS tring())); 63 ON_CALL(m_webFrameClient, userAgentOverride()).WillByDefault(Return(WebS tring()));
64 64
65 FrameTestHelpers::TestWebViewClient webViewClient; 65 FrameTestHelpers::TestWebViewClient webViewClient;
66 m_webView = WebView::create(&webViewClient); 66 m_webView = WebView::create(&webViewClient, WebPageVisibilityStateVisibl e);
67 // FIXME: http://crbug.com/363843. This needs to find a better way to 67 // FIXME: http://crbug.com/363843. This needs to find a better way to
68 // not create graphics layers. 68 // not create graphics layers.
69 m_webView->settings()->setAcceleratedCompositingEnabled(false); 69 m_webView->settings()->setAcceleratedCompositingEnabled(false);
70 m_mainFrame = WebLocalFrame::create(WebTreeScopeType::Document, &m_webFr ameClient); 70 m_mainFrame = WebLocalFrame::create(WebTreeScopeType::Document, &m_webFr ameClient);
71 m_webView->setMainFrame(m_mainFrame); 71 m_webView->setMainFrame(m_mainFrame);
72 } 72 }
73 73
74 void TearDown() override 74 void TearDown() override
75 { 75 {
76 m_webView->close(); 76 m_webView->close();
(...skipping 28 matching lines...) Expand all
105 EXPECT_TRUE(overrideUserAgent.equals(userAgent())); 105 EXPECT_TRUE(overrideUserAgent.equals(userAgent()));
106 Mock::VerifyAndClearExpectations(&webFrameClient()); 106 Mock::VerifyAndClearExpectations(&webFrameClient());
107 107
108 // Remove the override and make sure we get the original back. 108 // Remove the override and make sure we get the original back.
109 EXPECT_CALL(webFrameClient(), userAgentOverride()).WillOnce(Return(WebString ())); 109 EXPECT_CALL(webFrameClient(), userAgentOverride()).WillOnce(Return(WebString ()));
110 EXPECT_TRUE(defaultUserAgent.equals(userAgent())); 110 EXPECT_TRUE(defaultUserAgent.equals(userAgent()));
111 } 111 }
112 112
113 } // namespace 113 } // namespace
114 } // namespace blink 114 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/tests/ChromeClientImplTest.cpp ('k') | third_party/WebKit/Source/web/tests/FrameTestHelpers.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698