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

Side by Side Diff: chrome/browser/history/DEPS

Issue 12647008: Refactor OAuth2TokenService to have profile- and device-based implementations. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Moved DeviceOAuth2TokenService factory method to g_browser_process Created 7 years, 9 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
OLDNEW
1 include_rules = [ 1 include_rules = [
2 # History is being made into a Browser Component, so we have these 2 # History is being made into a Browser Component, so we have these
3 # three basic rules followed by temporary exceptions. Please don't 3 # three basic rules followed by temporary exceptions. Please don't
4 # add to the list of exceptions! 4 # add to the list of exceptions!
5 "-chrome/browser", 5 "-chrome/browser",
6 "+chrome/browser/api", 6 "+chrome/browser/api",
7 "+chrome/browser/common", 7 "+chrome/browser/common",
8 "+chrome/browser/history", 8 "+chrome/browser/history",
9 9
10 # TODO(erikwright): Bring this list to zero. 10 # TODO(erikwright): Bring this list to zero.
(...skipping 22 matching lines...) Expand all
33 "!chrome/browser/prerender/prerender_manager_factory.h", 33 "!chrome/browser/prerender/prerender_manager_factory.h",
34 "!chrome/browser/profiles/profile.h", 34 "!chrome/browser/profiles/profile.h",
35 "!chrome/browser/profiles/profile_dependency_manager.h", 35 "!chrome/browser/profiles/profile_dependency_manager.h",
36 "!chrome/browser/profiles/profile_manager.h", 36 "!chrome/browser/profiles/profile_manager.h",
37 "!chrome/browser/profiles/profile_keyed_service.h", 37 "!chrome/browser/profiles/profile_keyed_service.h",
38 "!chrome/browser/profiles/profile_keyed_service_factory.h", 38 "!chrome/browser/profiles/profile_keyed_service_factory.h",
39 "!chrome/browser/profiles/refcounted_profile_keyed_service.h", 39 "!chrome/browser/profiles/refcounted_profile_keyed_service.h",
40 "!chrome/browser/profiles/refcounted_profile_keyed_service_factory.h", 40 "!chrome/browser/profiles/refcounted_profile_keyed_service_factory.h",
41 "!chrome/browser/profiles/refcounted_profile_keyed_service_factory.h", 41 "!chrome/browser/profiles/refcounted_profile_keyed_service_factory.h",
42 "!chrome/browser/signin/oauth2_token_service.h", 42 "!chrome/browser/signin/oauth2_token_service.h",
43 "!chrome/browser/signin/oauth2_token_service_factory.h", 43 "!chrome/browser/signin/profile_oauth2_token_service.h",
44 "!chrome/browser/signin/profile_oauth2_token_service_factory.h",
44 "!chrome/browser/signin/token_service_factory.h", 45 "!chrome/browser/signin/token_service_factory.h",
45 "!chrome/browser/sync/profile_sync_service.h", 46 "!chrome/browser/sync/profile_sync_service.h",
46 "!chrome/browser/sync/profile_sync_service_factory.h", 47 "!chrome/browser/sync/profile_sync_service_factory.h",
47 "!chrome/browser/ui/browser.h", 48 "!chrome/browser/ui/browser.h",
48 "!chrome/browser/ui/browser_finder.h", 49 "!chrome/browser/ui/browser_finder.h",
49 "!chrome/browser/search_engines/template_url_id.h", 50 "!chrome/browser/search_engines/template_url_id.h",
50 "!chrome/browser/ui/profile_error_dialog.h", 51 "!chrome/browser/ui/profile_error_dialog.h",
51 "!chrome/browser/ui/search/instant_overlay.h", 52 "!chrome/browser/ui/search/instant_overlay.h",
52 "!chrome/browser/ui/webui/ntp/most_visited_handler.h", 53 "!chrome/browser/ui/webui/ntp/most_visited_handler.h",
53 "!chrome/browser/ui/webui/ntp/new_tab_ui.h", 54 "!chrome/browser/ui/webui/ntp/new_tab_ui.h",
54 ] 55 ]
55 56
56 specific_include_rules = { 57 specific_include_rules = {
57 # Browser tests, by definition, need access to the browser objects. 58 # Browser tests, by definition, need access to the browser objects.
58 '.*_(api|browser|)test\.cc': [ 59 '.*_(api|browser|)test\.cc': [
59 "+chrome/browser", 60 "+chrome/browser",
60 ], 61 ],
61 # TODO(erikwright): Bring this list to zero. 62 # TODO(erikwright): Bring this list to zero.
62 # 63 #
63 # Do not add to the list of temporarily-allowed dependencies below, 64 # Do not add to the list of temporarily-allowed dependencies below,
64 # and please do not introduce more #includes of these files. 65 # and please do not introduce more #includes of these files.
65 '.*_[a-z]*test\.cc': [ 66 '.*_[a-z]*test\.cc': [
66 "!chrome/browser/bookmarks/bookmark_utils.h", 67 "!chrome/browser/bookmarks/bookmark_utils.h",
67 ] 68 ]
68 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698