Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Side by Side Diff: chrome/browser/profiles/profile_dependency_manager.cc

Issue 11421192: Save extension activity log to a file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: something about lkgr Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "chrome/browser/profiles/profile_dependency_manager.h" 5 #include "chrome/browser/profiles/profile_dependency_manager.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <deque> 8 #include <deque>
9 #include <iterator> 9 #include <iterator>
10 10
11 #include "chrome/browser/autofill/personal_data_manager_factory.h" 11 #include "chrome/browser/autofill/personal_data_manager_factory.h"
12 #include "chrome/browser/background/background_contents_service_factory.h" 12 #include "chrome/browser/background/background_contents_service_factory.h"
13 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 13 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
14 #include "chrome/browser/content_settings/cookie_settings.h" 14 #include "chrome/browser/content_settings/cookie_settings.h"
15 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" 15 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h"
16 #include "chrome/browser/download/download_service_factory.h" 16 #include "chrome/browser/download/download_service_factory.h"
17 #include "chrome/browser/extensions/activity_log.h"
17 #include "chrome/browser/extensions/api/bluetooth/bluetooth_api_factory.h" 18 #include "chrome/browser/extensions/api/bluetooth/bluetooth_api_factory.h"
18 #include "chrome/browser/extensions/api/bookmarks/bookmark_api_factory.h" 19 #include "chrome/browser/extensions/api/bookmarks/bookmark_api_factory.h"
19 #include "chrome/browser/extensions/api/commands/command_service_factory.h" 20 #include "chrome/browser/extensions/api/commands/command_service_factory.h"
20 #include "chrome/browser/extensions/api/cookies/cookies_api.h" 21 #include "chrome/browser/extensions/api/cookies/cookies_api.h"
21 #include "chrome/browser/extensions/api/dial/dial_api_factory.h" 22 #include "chrome/browser/extensions/api/dial/dial_api_factory.h"
22 #include "chrome/browser/extensions/api/discovery/suggested_links_registry_facto ry.h" 23 #include "chrome/browser/extensions/api/discovery/suggested_links_registry_facto ry.h"
23 #include "chrome/browser/extensions/api/extension_action/script_badge_api.h" 24 #include "chrome/browser/extensions/api/extension_action/script_badge_api.h"
24 #include "chrome/browser/extensions/api/file_handlers/file_handlers_api.h" 25 #include "chrome/browser/extensions/api/file_handlers/file_handlers_api.h"
25 #include "chrome/browser/extensions/api/font_settings/font_settings_api_factory. h" 26 #include "chrome/browser/extensions/api/font_settings/font_settings_api_factory. h"
26 #include "chrome/browser/extensions/api/history/history_api_factory.h" 27 #include "chrome/browser/extensions/api/history/history_api_factory.h"
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 ChromeURLDataManagerFactory::GetInstance(); 245 ChromeURLDataManagerFactory::GetInstance();
245 #if defined(ENABLE_PRINTING) 246 #if defined(ENABLE_PRINTING)
246 CloudPrintProxyServiceFactory::GetInstance(); 247 CloudPrintProxyServiceFactory::GetInstance();
247 #endif 248 #endif
248 CookieSettings::Factory::GetInstance(); 249 CookieSettings::Factory::GetInstance();
249 #if defined(ENABLE_NOTIFICATIONS) 250 #if defined(ENABLE_NOTIFICATIONS)
250 DesktopNotificationServiceFactory::GetInstance(); 251 DesktopNotificationServiceFactory::GetInstance();
251 #endif 252 #endif
252 DownloadServiceFactory::GetInstance(); 253 DownloadServiceFactory::GetInstance();
253 #if defined(ENABLE_EXTENSIONS) 254 #if defined(ENABLE_EXTENSIONS)
255 extensions::ActivityLogFactory::GetInstance();
254 extensions::AppRestoreServiceFactory::GetInstance(); 256 extensions::AppRestoreServiceFactory::GetInstance();
255 extensions::BookmarkAPIFactory::GetInstance(); 257 extensions::BookmarkAPIFactory::GetInstance();
256 extensions::BluetoothAPIFactory::GetInstance(); 258 extensions::BluetoothAPIFactory::GetInstance();
257 extensions::CommandServiceFactory::GetInstance(); 259 extensions::CommandServiceFactory::GetInstance();
258 extensions::CookiesAPI::GetFactoryInstance(); 260 extensions::CookiesAPI::GetFactoryInstance();
259 extensions::DialAPIFactory::GetInstance(); 261 extensions::DialAPIFactory::GetInstance();
260 extensions::ExtensionSystemFactory::GetInstance(); 262 extensions::ExtensionSystemFactory::GetInstance();
261 extensions::FileHandlersAPI::GetFactoryInstance(); 263 extensions::FileHandlersAPI::GetFactoryInstance();
262 extensions::FontSettingsAPIFactory::GetInstance(); 264 extensions::FontSettingsAPIFactory::GetInstance();
263 extensions::HistoryAPIFactory::GetInstance(); 265 extensions::HistoryAPIFactory::GetInstance();
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 } 453 }
452 454
453 result.append("\n /* Toplevel profile */\n"); 455 result.append("\n /* Toplevel profile */\n");
454 result.append(" Profile [shape=box];\n"); 456 result.append(" Profile [shape=box];\n");
455 457
456 result.append("}\n"); 458 result.append("}\n");
457 return result; 459 return result;
458 } 460 }
459 461
460 #endif 462 #endif
OLDNEW
« no previous file with comments | « chrome/browser/extensions/url_actions.cc ('k') | chrome/browser/ui/webui/extensions/extension_activity_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698