OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <set> | 5 #include <set> |
6 #include <string> | 6 #include <string> |
7 | 7 |
8 #include "base/base_paths.h" | 8 #include "base/base_paths.h" |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "chrome/browser/history/history_notifications.h" | 23 #include "chrome/browser/history/history_notifications.h" |
24 #include "chrome/common/chrome_constants.h" | 24 #include "chrome/common/chrome_constants.h" |
25 #include "chrome/common/chrome_notification_types.h" | 25 #include "chrome/common/chrome_notification_types.h" |
26 #include "chrome/common/chrome_paths.h" | 26 #include "chrome/common/chrome_paths.h" |
27 #include "chrome/common/chrome_switches.h" | 27 #include "chrome/common/chrome_switches.h" |
28 #include "chrome/test/base/model_test_utils.h" | 28 #include "chrome/test/base/model_test_utils.h" |
29 #include "chrome/test/base/testing_profile.h" | 29 #include "chrome/test/base/testing_profile.h" |
30 #include "content/public/browser/notification_details.h" | 30 #include "content/public/browser/notification_details.h" |
31 #include "content/public/browser/notification_registrar.h" | 31 #include "content/public/browser/notification_registrar.h" |
32 #include "content/public/browser/notification_source.h" | 32 #include "content/public/browser/notification_source.h" |
33 #include "content/test/test_browser_thread.h" | 33 #include "content/public/test/test_browser_thread.h" |
34 #include "testing/gtest/include/gtest/gtest.h" | 34 #include "testing/gtest/include/gtest/gtest.h" |
35 #include "ui/base/models/tree_node_iterator.h" | 35 #include "ui/base/models/tree_node_iterator.h" |
36 #include "ui/base/models/tree_node_model.h" | 36 #include "ui/base/models/tree_node_model.h" |
37 | 37 |
38 using base::Time; | 38 using base::Time; |
39 using base::TimeDelta; | 39 using base::TimeDelta; |
40 using content::BrowserThread; | 40 using content::BrowserThread; |
41 | 41 |
42 namespace { | 42 namespace { |
43 | 43 |
(...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1157 AssertExtensiveChangesObserverCount(1, 0); | 1157 AssertExtensiveChangesObserverCount(1, 0); |
1158 model_.EndExtensiveChanges(); | 1158 model_.EndExtensiveChanges(); |
1159 EXPECT_TRUE(model_.IsDoingExtensiveChanges()); | 1159 EXPECT_TRUE(model_.IsDoingExtensiveChanges()); |
1160 AssertExtensiveChangesObserverCount(1, 0); | 1160 AssertExtensiveChangesObserverCount(1, 0); |
1161 model_.EndExtensiveChanges(); | 1161 model_.EndExtensiveChanges(); |
1162 EXPECT_FALSE(model_.IsDoingExtensiveChanges()); | 1162 EXPECT_FALSE(model_.IsDoingExtensiveChanges()); |
1163 AssertExtensiveChangesObserverCount(1, 1); | 1163 AssertExtensiveChangesObserverCount(1, 1); |
1164 } | 1164 } |
1165 | 1165 |
1166 } // namespace | 1166 } // namespace |
OLD | NEW |