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

Unified Diff: athena/activity/activity_manager_impl.cc

Issue 314303004: Use webview in web activity (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added unittests Created 6 years, 6 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
Index: athena/activity/activity_manager_impl.cc
diff --git a/athena/activity/activity_manager_impl.cc b/athena/activity/activity_manager_impl.cc
index 8e37bcae2dfe996080809e15e54ea5357039cf7f..32db67203413b582d056457eff74274cddd5922b 100644
--- a/athena/activity/activity_manager_impl.cc
+++ b/athena/activity/activity_manager_impl.cc
@@ -24,7 +24,7 @@ class ActivityManagerImpl : public ActivityManager {
instance = this;
}
virtual ~ActivityManagerImpl() {
- while (activities_.empty())
+ while (!activities_.empty())
Jun Mukai 2014/06/06 20:17:29 I think this has been fixed by another CL (sorry f
oshima 2014/06/06 20:55:51 I needed this in order for the test to pass. rebas
delete activities_.front();
CHECK_EQ(this, instance);

Powered by Google App Engine
This is Rietveld 408576698