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