blob: 6324617a27fbfbe9ac3ecbabb28f1dd227f1db5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Please add joi@ or erikwright@ as reviewers for any changes to DEPS files
# under android_webview/ as they are keeping track of what needs to become a
# Browser Component.
include_rules = [
# Temporary until we implement our own versions of the *Client classes.
"!chrome/common/chrome_content_client.h",
"!chrome/browser/chrome_content_browser_client.h",
"!chrome/renderer/chrome_content_renderer_client.h",
# Temporary until services we use no longer depend on Chrome's path service.
"!chrome/common/chrome_paths.h",
# Temporary until TabAndroid is in a more suitable place.
"!chrome/browser/android/tab_android.h",
# Temporary until autofill becomes a browser component.
"!chrome/browser/autofill/autofill_external_delegate.h",
# Temporary until we implement our own versions of the *Client classes.
"!chrome/browser/browser_process.h",
"!chrome/browser/profiles/profile.h",
"!chrome/browser/profiles/profile_manager.h",
# Temporary until the javascript dialog creator is unpicked from WebView.
"!chrome/browser/ui/app_modal_dialogs/javascript_dialog_creator.h",
# Temporarily required until we instantiate components individually.
"!chrome/browser/ui/tab_contents/tab_contents.h",
]
|