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

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

Issue 10910071: Extract abstract base to API directory for ProfileSyncService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More unit test fixes. Created 8 years, 3 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 include_rules = [ 1 include_rules = [
2 # Autofill is being made into a Browser Component, so we have these 2 # Autofill 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/autofill", 7 "+chrome/browser/autofill",
8 8
9 # Permanently-allowed DEPS beyond the standard Browser 9 # Permanently-allowed DEPS beyond the standard Browser
10 # Components-like DEPS above go here. 10 # Components-like DEPS above go here.
11 "+third_party/libphonenumber", # For phone number i18n. 11 "+third_party/libphonenumber", # For phone number i18n.
12 12
13 # TODO(joi): Bring this list to zero. 13 # TODO(joi): Bring this list to zero.
14 # 14 #
15 # Do not add to the list of temporarily-allowed dependencies below, 15 # Do not add to the list of temporarily-allowed dependencies below,
16 # and please do not introduce more #includes of these files. 16 # and please do not introduce more #includes of these files.
17 17
18 # Can go once ProfileSyncService is converted.
19 "!chrome/browser/profiles/profile.h",
20
21 # Moving to api 18 # Moving to api
22 "!chrome/browser/profiles/profile_keyed_service.h", 19 "!chrome/browser/profiles/profile_keyed_service.h",
23 20
24 # Will go when PersonalDataManagerFactory moves to c/b/configuration. 21 # Will go when PersonalDataManagerFactory moves to c/b/configuration.
25 "!chrome/browser/profiles/profile_dependency_manager.h", 22 "!chrome/browser/profiles/profile_dependency_manager.h",
26 "!chrome/browser/profiles/profile_keyed_service_factory.h", 23 "!chrome/browser/profiles/profile_keyed_service_factory.h",
27 24
28 # Needs abstract base.
29 "!chrome/browser/sync/profile_sync_service.h",
30 "!chrome/browser/sync/profile_sync_service_factory.h",
31 "!chrome/browser/sync/profile_sync_service_observer.h",
32
33 "!chrome/browser/ui/tab_contents/tab_contents.h", 25 "!chrome/browser/ui/tab_contents/tab_contents.h",
34 26
35 # Do not add to the list of temporarily-allowed dependencies above, 27 # Do not add to the list of temporarily-allowed dependencies above,
36 # and please do not introduce more #includes of these files. 28 # and please do not introduce more #includes of these files.
37 29
38 # TODO(akalin): Remove this dependency. 30 # TODO(akalin): Remove this dependency.
39 "!sync/util/data_encryption_win.h", 31 "!sync/util/data_encryption_win.h",
40 ] 32 ]
41 33
42 specific_include_rules = { 34 specific_include_rules = {
43 # TODO(joi): Bring this list to zero. 35 # TODO(joi): Bring this list to zero.
44 # 36 #
45 # Do not add to the list of temporarily-allowed dependencies below, 37 # Do not add to the list of temporarily-allowed dependencies below,
46 # and please do not introduce more #includes of these files. 38 # and please do not introduce more #includes of these files.
47 '.*_[a-z]*test\.cc': [ 39 '.*_[a-z]*test\.cc': [
48 "!chrome/browser/password_manager/encryptor.h", 40 "!chrome/browser/password_manager/encryptor.h",
41 "!chrome/browser/profiles/profile.h",
42 "!chrome/browser/sync/profile_sync_service.h",
43 "!chrome/browser/sync/profile_sync_service_factory.h",
49 "!chrome/browser/translate/translate_infobar_delegate.h", 44 "!chrome/browser/translate/translate_infobar_delegate.h",
50 "!chrome/browser/translate/translate_manager.h", 45 "!chrome/browser/translate/translate_manager.h",
51 "!chrome/browser/webdata/autofill_web_data_service_impl.h", 46 "!chrome/browser/webdata/autofill_web_data_service_impl.h",
52 "!chrome/browser/webdata/web_data_service.h", 47 "!chrome/browser/webdata/web_data_service.h",
53 "!chrome/browser/webdata/web_data_service_factory.h", 48 "!chrome/browser/webdata/web_data_service_factory.h",
54 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h", 49 "!chrome/browser/ui/autofill/tab_autofill_manager_delegate.h",
55 "!chrome/browser/ui/browser.h", 50 "!chrome/browser/ui/browser.h",
56 "!chrome/browser/ui/browser_tabstrip.h", 51 "!chrome/browser/ui/browser_tabstrip.h",
57 "!chrome/browser/ui/browser_window.h", 52 "!chrome/browser/ui/browser_window.h",
58 "!chrome/browser/ui/tab_contents/tab_autofill_manager_delegate.h", 53 "!chrome/browser/ui/tab_contents/tab_autofill_manager_delegate.h",
59 "!chrome/browser/ui/tab_contents/test_tab_contents.h", 54 "!chrome/browser/ui/tab_contents/test_tab_contents.h",
60 ], 55 ],
61 56
62 # TODO(joi): Get rid of the need for this, e.g. by moving 57 # TODO(joi): Get rid of the need for this by moving
63 # PersonalDataManagerFactory to chrome/browser/configuration. 58 # PersonalDataManagerFactory to chrome/browser/configuration.
64 'personal_data_manager_factory\.cc': [ 59 'personal_data_manager_factory\.cc': [
60 "!chrome/browser/profiles/profile.h",
65 "!chrome/browser/webdata/web_data_service_factory.h", 61 "!chrome/browser/webdata/web_data_service_factory.h",
66 ], 62 ],
67 } 63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698