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/task.h" | 7 #include "base/task.h" |
8 #include "chrome/browser/extensions/extension_bookmarks_module.h" | 8 #include "chrome/browser/bookmarks/bookmark_extension_api.h" |
9 #include "chrome/common/chrome_notification_types.h" | 9 #include "chrome/common/chrome_notification_types.h" |
10 #include "chrome/common/extensions/extension.h" | 10 #include "chrome/common/extensions/extension.h" |
11 #include "content/browser/browser_thread.h" | 11 #include "content/browser/browser_thread.h" |
12 #include "content/public/browser/notification_service.h" | 12 #include "content/public/browser/notification_service.h" |
13 | 13 |
14 namespace browser_sync { | 14 namespace browser_sync { |
15 | 15 |
16 namespace { | 16 namespace { |
17 // A helper task to register an ExtensionsActivityMonitor as an observer of | 17 // A helper task to register an ExtensionsActivityMonitor as an observer of |
18 // events on the UI thread (even though the monitor may live on another thread). | 18 // events on the UI thread (even though the monitor may live on another thread). |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 f->name() == "bookmarks.create" || | 94 f->name() == "bookmarks.create" || |
95 f->name() == "bookmarks.removeTree" || | 95 f->name() == "bookmarks.removeTree" || |
96 f->name() == "bookmarks.remove") { | 96 f->name() == "bookmarks.remove") { |
97 Record& record = records_[extension->id()]; | 97 Record& record = records_[extension->id()]; |
98 record.extension_id = extension->id(); | 98 record.extension_id = extension->id(); |
99 record.bookmark_write_count++; | 99 record.bookmark_write_count++; |
100 } | 100 } |
101 } | 101 } |
102 | 102 |
103 } // namespace browser_sync | 103 } // namespace browser_sync |
OLD | NEW |