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

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

Issue 2421943002: Make JavaScript dialogs auto-dismiss on tab switch. (Closed)
Patch Set: more commentary, nits Created 4 years, 2 months 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 "confirm_bubble.h", 97 "confirm_bubble.h",
98 "crypto_module_password_dialog.h", 98 "crypto_module_password_dialog.h",
99 "find_bar/find_bar.h", 99 "find_bar/find_bar.h",
100 "find_bar/find_bar_state.h", 100 "find_bar/find_bar_state.h",
101 "find_bar/find_bar_state_factory.cc", 101 "find_bar/find_bar_state_factory.cc",
102 "find_bar/find_bar_state_factory.h", 102 "find_bar/find_bar_state_factory.h",
103 "find_bar/find_notification_details.h", 103 "find_bar/find_notification_details.h",
104 "find_bar/find_tab_helper.cc", 104 "find_bar/find_tab_helper.cc",
105 "find_bar/find_tab_helper.h", 105 "find_bar/find_tab_helper.h",
106 "javascript_dialogs/chrome_javascript_native_dialog_factory.h", 106 "javascript_dialogs/chrome_javascript_native_dialog_factory.h",
107 "javascript_dialogs/javascript_dialog_tab_helper.cc",
108 "javascript_dialogs/javascript_dialog_tab_helper.h",
109 "login/login_handler.cc", 107 "login/login_handler.cc",
110 "login/login_handler.h", 108 "login/login_handler.h",
111 "login/login_interstitial_delegate.cc", 109 "login/login_interstitial_delegate.cc",
112 "login/login_interstitial_delegate.h", 110 "login/login_interstitial_delegate.h",
113 "media_utils.cc", 111 "media_utils.cc",
114 "media_utils.h", 112 "media_utils.h",
115 "navigation_correction_tab_observer.cc", 113 "navigation_correction_tab_observer.cc",
116 "navigation_correction_tab_observer.h", 114 "navigation_correction_tab_observer.h",
117 "passwords/account_avatar_fetcher.cc", 115 "passwords/account_avatar_fetcher.cc",
118 "passwords/account_avatar_fetcher.h", 116 "passwords/account_avatar_fetcher.h",
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 "find_bar/find_bar_controller.h", 718 "find_bar/find_bar_controller.h",
721 "global_error/global_error.cc", 719 "global_error/global_error.cc",
722 "global_error/global_error.h", 720 "global_error/global_error.h",
723 "global_error/global_error_bubble_view_base.h", 721 "global_error/global_error_bubble_view_base.h",
724 "global_error/global_error_service.cc", 722 "global_error/global_error_service.cc",
725 "global_error/global_error_service.h", 723 "global_error/global_error_service.h",
726 "global_error/global_error_service_factory.cc", 724 "global_error/global_error_service_factory.cc",
727 "global_error/global_error_service_factory.h", 725 "global_error/global_error_service_factory.h",
728 "infobar_container_delegate.cc", 726 "infobar_container_delegate.cc",
729 "infobar_container_delegate.h", 727 "infobar_container_delegate.h",
728 "javascript_dialogs/javascript_dialog_tab_helper.cc",
729 "javascript_dialogs/javascript_dialog_tab_helper.h",
730 "javascript_dialogs/javascript_dialog_views.cc",
731 "javascript_dialogs/javascript_dialog_views.h",
730 "layout_constants.cc", 732 "layout_constants.cc",
731 "layout_constants.h", 733 "layout_constants.h",
732 "location_bar/location_bar.cc", 734 "location_bar/location_bar.cc",
733 "location_bar/location_bar.h", 735 "location_bar/location_bar.h",
734 "location_bar/location_bar_util.cc", 736 "location_bar/location_bar_util.cc",
735 "location_bar/location_bar_util.h", 737 "location_bar/location_bar_util.h",
736 "native_window_tracker.h", 738 "native_window_tracker.h",
737 "omnibox/alternate_nav_infobar_delegate.cc", 739 "omnibox/alternate_nav_infobar_delegate.cc",
738 "omnibox/alternate_nav_infobar_delegate.h", 740 "omnibox/alternate_nav_infobar_delegate.h",
739 "omnibox/chrome_omnibox_client.cc", 741 "omnibox/chrome_omnibox_client.cc",
(...skipping 2677 matching lines...) Expand 10 before | Expand all | Expand 10 after
3417 "test/test_confirm_bubble_model.cc", 3419 "test/test_confirm_bubble_model.cc",
3418 "test/test_confirm_bubble_model.h", 3420 "test/test_confirm_bubble_model.h",
3419 ] 3421 ]
3420 deps += [ "//chrome/test:test_support_ui" ] 3422 deps += [ "//chrome/test:test_support_ui" ]
3421 } 3423 }
3422 3424
3423 if (enable_extensions) { 3425 if (enable_extensions) {
3424 deps += [ "//extensions/browser" ] 3426 deps += [ "//extensions/browser" ]
3425 } 3427 }
3426 } 3428 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698