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

Unified Diff: webkit/glue/webview_unittest.cc

Issue 255042: Reverting 27711. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/webview_impl.cc ('k') | webkit/glue/webworker_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webview_unittest.cc
===================================================================
--- webkit/glue/webview_unittest.cc (revision 27750)
+++ webkit/glue/webview_unittest.cc (working copy)
@@ -13,14 +13,14 @@
WebView* view = test_shell_->webView();
ASSERT_TRUE(view != 0);
- view->SetActive(true);
- EXPECT_TRUE(view->IsActive());
+ view->setIsActive(true);
+ EXPECT_TRUE(view->isActive());
- view->SetActive(false);
- EXPECT_FALSE(view->IsActive());
+ view->setIsActive(false);
+ EXPECT_FALSE(view->isActive());
- view->SetActive(true);
- EXPECT_TRUE(view->IsActive());
+ view->setIsActive(true);
+ EXPECT_TRUE(view->isActive());
}
// TODO(viettrungluu): add more tests
« no previous file with comments | « webkit/glue/webview_impl.cc ('k') | webkit/glue/webworker_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698