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 #ifndef CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_ACTIVITY_LOG_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_ACTIVITY_LOG_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_ACTIVITY_LOG_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_ACTIVITY_LOG_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/bind.h" | 12 #include "base/bind.h" |
13 #include "base/bind_helpers.h" | 13 #include "base/bind_helpers.h" |
14 #include "base/callback.h" | 14 #include "base/callback.h" |
15 #include "base/hash_tables.h" | 15 #include "base/containers/hash_tables.h" |
16 #include "base/memory/singleton.h" | 16 #include "base/memory/singleton.h" |
17 #include "base/observer_list_threadsafe.h" | 17 #include "base/observer_list_threadsafe.h" |
18 #include "base/synchronization/lock.h" | 18 #include "base/synchronization/lock.h" |
19 #include "base/threading/thread.h" | 19 #include "base/threading/thread.h" |
20 #include "chrome/browser/extensions/activity_log/activity_actions.h" | 20 #include "chrome/browser/extensions/activity_log/activity_actions.h" |
21 #include "chrome/browser/extensions/activity_log/activity_database.h" | 21 #include "chrome/browser/extensions/activity_log/activity_database.h" |
22 #include "chrome/browser/extensions/install_observer.h" | 22 #include "chrome/browser/extensions/install_observer.h" |
23 #include "chrome/browser/extensions/install_tracker.h" | 23 #include "chrome/browser/extensions/install_tracker.h" |
24 #include "chrome/browser/extensions/tab_helper.h" | 24 #include "chrome/browser/extensions/tab_helper.h" |
25 #include "chrome/browser/profiles/profile.h" | 25 #include "chrome/browser/profiles/profile.h" |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 virtual content::BrowserContext* GetBrowserContextToUse( | 252 virtual content::BrowserContext* GetBrowserContextToUse( |
253 content::BrowserContext* context) const OVERRIDE; | 253 content::BrowserContext* context) const OVERRIDE; |
254 | 254 |
255 DISALLOW_COPY_AND_ASSIGN(ActivityLogFactory); | 255 DISALLOW_COPY_AND_ASSIGN(ActivityLogFactory); |
256 }; | 256 }; |
257 | 257 |
258 | 258 |
259 } // namespace extensions | 259 } // namespace extensions |
260 | 260 |
261 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_ACTIVITY_LOG_H_ | 261 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_ACTIVITY_LOG_H_ |
OLD | NEW |