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

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

Issue 12476031: Refactor notifications of chrome/browser/webdata (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase again 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 | Annotate | Revision Log
OLDNEW
1 include_rules = [ 1 include_rules = [
2 "+content/public/browser", 2 "+content/public/browser",
3 "+crypto/random.h", 3 "+crypto/random.h",
4 "+google_apis/google_api_keys.h", 4 "+google_apis/google_api_keys.h",
5 "+net", 5 "+net",
6 "+third_party/libjingle", 6 "+third_party/libjingle",
7 "+third_party/libphonenumber", # For phone number i18n. 7 "+third_party/libphonenumber", # For phone number i18n.
8 "+webkit/plugins/webplugininfo.h", 8 "+webkit/plugins/webplugininfo.h",
9 9
10 # TODO(joi): This is "ok" temporarily (it's just a header file with 10 # TODO(joi): This is "ok" temporarily (it's just a header file with
11 # a large enum, and doesn't bring in any other dependencies on 11 # a large enum, and doesn't bring in any other dependencies on
12 # //chrome). The plan of record to get rid of this is to change 12 # //chrome). The plan of record to get rid of this is to change
13 # Autofill and WebData to not use NotificationService, and instead 13 # Autofill and WebData to not use NotificationService, and instead
14 # use typed callback interfaces or allow registering base::Callback 14 # use typed callback interfaces or allow registering base::Callback
15 # callbacks for each event. 15 # callbacks for each event.
16 "!chrome/common/chrome_notification_types.h", 16 "!chrome/common/chrome_notification_types.h",
17 17
18 # TODO(joi, kaiwang): Bring this list to zero. 18 # TODO(joi, kaiwang): Bring this list to zero.
19 "!chrome/browser/api/webdata", 19 "!chrome/browser/api/webdata",
20 "!chrome/browser/webdata",
20 21
21 # TODO(akalin): Remove this dependency. 22 # TODO(akalin): Remove this dependency.
22 "!sync/util/data_encryption_win.h", 23 "!sync/util/data_encryption_win.h",
23 ] 24 ]
24 25
25 specific_include_rules = { 26 specific_include_rules = {
26 '.*_[a-z]*test\.cc': [ 27 '.*_[a-z]*test\.cc': [
27 "+content/public/test", 28 "+content/public/test",
28 29
29 # TODO(joi, kaiwang): Bring this list to zero. 30 # TODO(joi, kaiwang): Bring this list to zero.
(...skipping 21 matching lines...) Expand all
51 "!chrome/browser/ui/browser_window.h", 52 "!chrome/browser/ui/browser_window.h",
52 "!chrome/browser/ui/tabs/tab_strip_model.h", 53 "!chrome/browser/ui/tabs/tab_strip_model.h",
53 "!chrome/common/chrome_constants.h", 54 "!chrome/common/chrome_constants.h",
54 "!chrome/common/chrome_paths.h", 55 "!chrome/common/chrome_paths.h",
55 "!chrome/common/pref_names.h", 56 "!chrome/common/pref_names.h",
56 "!chrome/common/render_messages.h", 57 "!chrome/common/render_messages.h",
57 "!chrome/common/url_constants.h", 58 "!chrome/common/url_constants.h",
58 "!chrome/test/base", 59 "!chrome/test/base",
59 ], 60 ],
60 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698