OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/profile_resetter/automatic_profile_resetter_delegate.h" | 5 #include "chrome/browser/profile_resetter/automatic_profile_resetter_delegate.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
595 if (ProfileResetGlobalError::IsSupportedOnPlatform()) | 595 if (ProfileResetGlobalError::IsSupportedOnPlatform()) |
596 ExpectResetPromptState(true /*active*/); | 596 ExpectResetPromptState(true /*active*/); |
597 else | 597 else |
598 ExpectResetPromptState(false /*active*/); | 598 ExpectResetPromptState(false /*active*/); |
599 resetter_delegate()->DismissPrompt(); | 599 resetter_delegate()->DismissPrompt(); |
600 ExpectResetPromptState(false /*active*/); | 600 ExpectResetPromptState(false /*active*/); |
601 resetter_delegate()->DismissPrompt(); | 601 resetter_delegate()->DismissPrompt(); |
602 } | 602 } |
603 | 603 |
604 } // namespace | 604 } // namespace |
605 | |
Peter Kasting
2014/05/28 18:46:32
Nit: Don't add a trailing blank line
engedy
2014/05/30 14:38:47
Done.
| |
OLD | NEW |