OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/sync/util/extensions_activity_monitor.h" | 5 #include "chrome/browser/sync/util/extensions_activity_monitor.h" |
6 | 6 |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
9 #include "base/waitable_event.h" | 9 #include "base/waitable_event.h" |
| 10 #include "base/values.h" |
10 #include "chrome/browser/chrome_thread.h" | 11 #include "chrome/browser/chrome_thread.h" |
11 #include "chrome/browser/extensions/extension_bookmarks_module.h" | 12 #include "chrome/browser/extensions/extension_bookmarks_module.h" |
12 #include "chrome/common/extensions/extension.h" | 13 #include "chrome/common/extensions/extension.h" |
13 #include "chrome/common/extensions/extension_constants.h" | 14 #include "chrome/common/extensions/extension_constants.h" |
14 #include "chrome/common/notification_service.h" | 15 #include "chrome/common/notification_service.h" |
15 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
16 | 17 |
17 using browser_sync::ExtensionsActivityMonitor; | 18 using browser_sync::ExtensionsActivityMonitor; |
18 namespace keys = extension_manifest_keys; | 19 namespace keys = extension_manifest_keys; |
19 | 20 |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 | 239 |
239 generator.NewEvent<CreateBookmarkFunction>(kTestExtensionPath1, | 240 generator.NewEvent<CreateBookmarkFunction>(kTestExtensionPath1, |
240 new CreateBookmarkFunction(), 3); | 241 new CreateBookmarkFunction(), 3); |
241 monitor->GetAndClearRecords(&results); | 242 monitor->GetAndClearRecords(&results); |
242 | 243 |
243 EXPECT_EQ(1U, results.size()); | 244 EXPECT_EQ(1U, results.size()); |
244 EXPECT_EQ(3U, results[id1].bookmark_write_count); | 245 EXPECT_EQ(3U, results[id1].bookmark_write_count); |
245 | 246 |
246 ui_loop()->DeleteSoon(FROM_HERE, monitor); | 247 ui_loop()->DeleteSoon(FROM_HERE, monitor); |
247 } | 248 } |
OLD | NEW |