| Index: trunk/src/cc/trees/thread_proxy.cc
 | 
| ===================================================================
 | 
| --- trunk/src/cc/trees/thread_proxy.cc	(revision 287765)
 | 
| +++ trunk/src/cc/trees/thread_proxy.cc	(working copy)
 | 
| @@ -466,10 +466,9 @@
 | 
|  
 | 
|  void ThreadProxy::SetDeferCommits(bool defer_commits) {
 | 
|    DCHECK(IsMainThread());
 | 
| -  if (main().defer_commits == defer_commits)
 | 
| -    return;
 | 
| +  DCHECK_NE(main().defer_commits, defer_commits);
 | 
| +  main().defer_commits = defer_commits;
 | 
|  
 | 
| -  main().defer_commits = defer_commits;
 | 
|    if (main().defer_commits)
 | 
|      TRACE_EVENT_ASYNC_BEGIN0("cc", "ThreadProxy::SetDeferCommits", this);
 | 
|    else
 | 
| 
 |