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

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 2315563002: Add PermissionPromptAndroid skeleton (Closed)
Patch Set: minor change Created 4 years, 1 month 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 "translate/translate_bubble_model_impl.cc", 186 "translate/translate_bubble_model_impl.cc",
187 "translate/translate_bubble_model_impl.h", 187 "translate/translate_bubble_model_impl.h",
188 "translate/translate_bubble_view_state_transition.cc", 188 "translate/translate_bubble_view_state_transition.cc",
189 "translate/translate_bubble_view_state_transition.h", 189 "translate/translate_bubble_view_state_transition.h",
190 "uninstall_browser_prompt.h", 190 "uninstall_browser_prompt.h",
191 "validation_message_bubble.h", 191 "validation_message_bubble.h",
192 "view_ids.h", 192 "view_ids.h",
193 "views/platform_keys_certificate_selector_chromeos.cc", 193 "views/platform_keys_certificate_selector_chromeos.cc",
194 "views/platform_keys_certificate_selector_chromeos.h", 194 "views/platform_keys_certificate_selector_chromeos.h",
195 "web_contents_sizer.h", 195 "web_contents_sizer.h",
196 "website_settings/permission_prompt.h",
196 "website_settings/website_settings.cc", 197 "website_settings/website_settings.cc",
197 "website_settings/website_settings.h", 198 "website_settings/website_settings.h",
198 "website_settings/website_settings_ui.cc", 199 "website_settings/website_settings_ui.cc",
199 "website_settings/website_settings_ui.h", 200 "website_settings/website_settings_ui.h",
200 "webui/about_ui.cc", 201 "webui/about_ui.cc",
201 "webui/about_ui.h", 202 "webui/about_ui.h",
202 "webui/bluetooth_internals/bluetooth_internals_ui.cc", 203 "webui/bluetooth_internals/bluetooth_internals_ui.cc",
203 "webui/bluetooth_internals/bluetooth_internals_ui.h", 204 "webui/bluetooth_internals/bluetooth_internals_ui.h",
204 "webui/browsing_history_handler.cc", 205 "webui/browsing_history_handler.cc",
205 "webui/browsing_history_handler.h", 206 "webui/browsing_history_handler.h",
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 "uma_browsing_activity_observer.cc", 868 "uma_browsing_activity_observer.cc",
868 "uma_browsing_activity_observer.h", 869 "uma_browsing_activity_observer.h",
869 "unload_controller.cc", 870 "unload_controller.cc",
870 "unload_controller.h", 871 "unload_controller.h",
871 "user_manager.cc", 872 "user_manager.cc",
872 "user_manager.h", 873 "user_manager.h",
873 "website_settings/chooser_bubble_delegate.cc", 874 "website_settings/chooser_bubble_delegate.cc",
874 "website_settings/chooser_bubble_delegate.h", 875 "website_settings/chooser_bubble_delegate.h",
875 "website_settings/permission_menu_model.cc", 876 "website_settings/permission_menu_model.cc",
876 "website_settings/permission_menu_model.h", 877 "website_settings/permission_menu_model.h",
877 "website_settings/permission_prompt.h",
878 "website_settings/website_settings_infobar_delegate.cc", 878 "website_settings/website_settings_infobar_delegate.cc",
879 "website_settings/website_settings_infobar_delegate.h", 879 "website_settings/website_settings_infobar_delegate.h",
880 "webui/app_launcher_login_handler.cc", 880 "webui/app_launcher_login_handler.cc",
881 "webui/app_launcher_login_handler.h", 881 "webui/app_launcher_login_handler.h",
882 "webui/bookmarks_ui.cc", 882 "webui/bookmarks_ui.cc",
883 "webui/bookmarks_ui.h", 883 "webui/bookmarks_ui.h",
884 "webui/chrome_web_contents_handler.cc", 884 "webui/chrome_web_contents_handler.cc",
885 "webui/chrome_web_contents_handler.h", 885 "webui/chrome_web_contents_handler.h",
886 "webui/constrained_web_dialog_delegate_base.cc", 886 "webui/constrained_web_dialog_delegate_base.cc",
887 "webui/constrained_web_dialog_delegate_base.h", 887 "webui/constrained_web_dialog_delegate_base.h",
(...skipping 2530 matching lines...) Expand 10 before | Expand all | Expand 10 after
3418 "test/test_confirm_bubble_model.cc", 3418 "test/test_confirm_bubble_model.cc",
3419 "test/test_confirm_bubble_model.h", 3419 "test/test_confirm_bubble_model.h",
3420 ] 3420 ]
3421 deps += [ "//chrome/test:test_support_ui" ] 3421 deps += [ "//chrome/test:test_support_ui" ]
3422 } 3422 }
3423 3423
3424 if (enable_extensions) { 3424 if (enable_extensions) {
3425 deps += [ "//extensions/browser" ] 3425 deps += [ "//extensions/browser" ]
3426 } 3426 }
3427 } 3427 }
OLDNEW
« no previous file with comments | « chrome/browser/permissions/permission_request_manager.cc ('k') | chrome/browser/ui/tab_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698