diff options
author | eugenebut <eugenebut@chromium.org> | 2016-03-25 13:58:55 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-25 21:02:02 +0000 |
commit | e9d4db6501a02924376d91f9867cd663744a85e9 (patch) | |
tree | 66a5b285755522078781363e7d27188289927d00 | |
parent | 2718dfcda8f7afd32b5229d91c3314bf61faf16c (diff) | |
download | chromium_src-e9d4db6501a02924376d91f9867cd663744a85e9.zip chromium_src-e9d4db6501a02924376d91f9867cd663744a85e9.tar.gz chromium_src-e9d4db6501a02924376d91f9867cd663744a85e9.tar.bz2 |
[ios] Added DEPS file to ios/web/shell.
This DEPS file temporary whitelists current includes.
BUG=597997
Review URL: https://codereview.chromium.org/1832153002
Cr-Commit-Position: refs/heads/master@{#383356}
-rw-r--r-- | ios/web/shell/DEPS | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ios/web/shell/DEPS b/ios/web/shell/DEPS new file mode 100644 index 0000000..abd90dd --- /dev/null +++ b/ios/web/shell/DEPS @@ -0,0 +1,17 @@ +include_rules = [ + # web shell must use only public API or own headers. + "-ios/web", + "+ios/web/public", + "+ios/web/shell", + + # TODO(crbug.com/597997): Remove these exceptions. Web shell must not use + # any private APIs from web. + "+ios/web/navigation/crw_session_controller.h", + "+ios/web/navigation/web_load_params.h", + "+ios/web/net/crw_url_verifying_protocol_handler.h", + "+ios/web/net/request_tracker_factory_impl.h", + "+ios/web/net/web_http_protocol_handler_delegate.h", + "+ios/web/web_state/ui/crw_web_controller.h", + "+ios/web/web_state/web_state_impl.h", +] + |