OLD | NEW |
---|---|
1 # Please add joi@ or erikwright@ as reviewers for any changes to DEPS files | 1 # Please add joi@ or erikwright@ as reviewers for any changes to DEPS files |
2 # under android_webview/ as they are keeping track of what needs to become a | 2 # under android_webview/ as they are keeping track of what needs to become a |
3 # Browser Component. | 3 # Browser Component. |
4 | 4 |
5 include_rules = [ | 5 include_rules = [ |
6 # Temporary until we implement our own versions of the *Client classes. | 6 # Temporary until we implement our own versions of the *Client classes. |
7 "!chrome/common/chrome_content_client.h", | 7 "!chrome/common/chrome_content_client.h", |
8 "!chrome/browser/chrome_content_browser_client.h", | 8 "!chrome/browser/chrome_content_browser_client.h", |
9 "!chrome/renderer/chrome_content_renderer_client.h", | 9 "!chrome/renderer/chrome_content_renderer_client.h", |
10 | 10 |
11 # Temporary until services we use no longer depend on Chrome's path service. | 11 # Temporary until services we use no longer depend on Chrome's path service. |
12 "!chrome/common/chrome_paths.h", | 12 "!chrome/common/chrome_paths.h", |
13 | 13 |
14 # Temporary until TabAndroid is in a more suitable place. | 14 # Temporary until TabAndroid is in a more suitable place. |
15 "!chrome/browser/android/tab_android.h", | 15 "!chrome/browser/android/tab_android.h", |
16 | 16 |
17 # Temporary until autofill becomes a browser component. | 17 # Temporary until autofill becomes a browser component. |
18 "!chrome/browser/autofill/autofill_external_delegate.h" | 18 "!chrome/browser/autofill/autofill_external_delegate.h", |
19 | |
20 # Temporary until we don't need infobars. | |
21 "!chrome/browser/api/infobars/confirm_infobar_delegate.h", | |
Jói
2012/08/23 14:27:46
This dependency would be OK as a permanent one, up
mkosiba (inactive)
2012/08/23 14:40:23
Actually looks like we don't need it anymore - it
Torne
2012/08/23 15:11:46
We won't have the same infobar functionality as Ch
| |
22 | |
23 # Temporary until we implement our own versions of the *Client classes. | |
24 "!chrome/browser/browser_process.h", | |
25 "!chrome/browser/profiles/profile.h", | |
26 "!chrome/browser/profiles/profile_manager.h", | |
27 | |
28 # Temporary until the javascript dialog creator is unpicked from WebView. | |
29 "!chrome/browser/ui/app_modal_dialogs/javascript_dialog_creator.h", | |
30 | |
31 # Temporarily required until we instantiate components individually. | |
32 "!chrome/browser/ui/tab_contents/tab_contents.h", | |
19 ] | 33 ] |
OLD | NEW |