| OLD | NEW |
| 1 include_rules = [ | 1 include_rules = [ |
| 2 "-chrome", | 2 "-chrome", |
| 3 "-content", | 3 "-content", |
| 4 "+chrome/browser/google_apis", | 4 "+chrome/browser/google_apis", |
| 5 ] | 5 ] |
| 6 | 6 |
| 7 # Exceptions are temporarily needed. crbug.com/146989 | 7 # Exceptions are temporarily needed. crbug.com/146989 |
| 8 specific_include_rules = { | 8 specific_include_rules = { |
| 9 ".*requests.*unittest\.cc": [ | |
| 10 # This is necessary for AuthService. See below. | |
| 11 "!chrome/test/base/testing_profile.h", | |
| 12 ], | |
| 13 # AuthService should be gone. crbug.com/162157 | 9 # AuthService should be gone. crbug.com/162157 |
| 14 "auth_service\.(h|cc)": [ | 10 "auth_service\.(h|cc)": [ |
| 15 "!chrome/browser/chrome_notification_types.h", | 11 "!chrome/browser/chrome_notification_types.h", |
| 16 "!chrome/browser/profiles/profile.h", | 12 "!chrome/browser/profiles/profile.h", |
| 17 "!chrome/browser/signin/token_service_factory.h", | 13 "!chrome/browser/signin/token_service_factory.h", |
| 18 "!chrome/browser/signin/token_service.h", | 14 "!chrome/browser/signin/token_service.h", |
| 19 "!content/public/browser/notification_details.h", | 15 "!content/public/browser/notification_details.h", |
| 20 "!content/public/browser/notification_observer.h", | 16 "!content/public/browser/notification_observer.h", |
| 21 "!content/public/browser/notification_registrar.h", | 17 "!content/public/browser/notification_registrar.h", |
| 22 "!content/public/browser/notification_source.h", | 18 "!content/public/browser/notification_source.h", |
| 23 "!content/public/browser/notification_types.h", | 19 "!content/public/browser/notification_types.h", |
| 24 ], | 20 ], |
| 25 } | 21 } |
| OLD | NEW |