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

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

Issue 2532323003: Public Sessions - prompt the user for audioCapture/videoCapture requests (Closed)
Patch Set: Added a new class for handling media access in Public Sessions Created 4 years 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/chrome_build.gni") 5 import("//build/config/chrome_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 1554 matching lines...) Expand 10 before | Expand all | Expand 10 after
1565 "guest_view/web_view/chrome_web_view_permission_helper_delegate.cc", 1565 "guest_view/web_view/chrome_web_view_permission_helper_delegate.cc",
1566 "guest_view/web_view/chrome_web_view_permission_helper_delegate.h", 1566 "guest_view/web_view/chrome_web_view_permission_helper_delegate.h",
1567 "guest_view/web_view/context_menu_content_type_web_view.cc", 1567 "guest_view/web_view/context_menu_content_type_web_view.cc",
1568 "guest_view/web_view/context_menu_content_type_web_view.h", 1568 "guest_view/web_view/context_menu_content_type_web_view.h",
1569 "media/capture_access_handler_base.cc", 1569 "media/capture_access_handler_base.cc",
1570 "media/capture_access_handler_base.h", 1570 "media/capture_access_handler_base.h",
1571 "media/cast_transport_host_filter.cc", 1571 "media/cast_transport_host_filter.cc",
1572 "media/cast_transport_host_filter.h", 1572 "media/cast_transport_host_filter.h",
1573 "media/extension_media_access_handler.cc", 1573 "media/extension_media_access_handler.cc",
1574 "media/extension_media_access_handler.h", 1574 "media/extension_media_access_handler.h",
1575 "media/public_session_media_access_handler.cc",
Devlin 2016/11/30 19:02:48 Isn't public session only on CrOS? Can we avoid c
Ivan Šandrk 2016/12/01 17:32:04 Done. I'm not an expert on BUILD files, you can do
1576 "media/public_session_media_access_handler.h",
1575 "media/webrtc/desktop_capture_access_handler.cc", 1577 "media/webrtc/desktop_capture_access_handler.cc",
1576 "media/webrtc/desktop_capture_access_handler.h", 1578 "media/webrtc/desktop_capture_access_handler.h",
1577 "media/webrtc/tab_capture_access_handler.cc", 1579 "media/webrtc/tab_capture_access_handler.cc",
1578 "media/webrtc/tab_capture_access_handler.h", 1580 "media/webrtc/tab_capture_access_handler.h",
1579 "metrics/extensions_metrics_provider.cc", 1581 "metrics/extensions_metrics_provider.cc",
1580 "metrics/extensions_metrics_provider.h", 1582 "metrics/extensions_metrics_provider.h",
1581 "renderer_context_menu/context_menu_content_type_app_mode.cc", 1583 "renderer_context_menu/context_menu_content_type_app_mode.cc",
1582 "renderer_context_menu/context_menu_content_type_app_mode.h", 1584 "renderer_context_menu/context_menu_content_type_app_mode.h",
1583 "renderer_context_menu/context_menu_content_type_extension_popup.cc", 1585 "renderer_context_menu/context_menu_content_type_extension_popup.cc",
1584 "renderer_context_menu/context_menu_content_type_extension_popup.h", 1586 "renderer_context_menu/context_menu_content_type_extension_popup.h",
(...skipping 2839 matching lines...) Expand 10 before | Expand all | Expand 10 after
4424 # linking all of the test support. 4426 # linking all of the test support.
4425 static_library("pepper_cdm_test_constants") { 4427 static_library("pepper_cdm_test_constants") {
4426 testonly = true 4428 testonly = true
4427 visibility = [ "//chrome/*" ] 4429 visibility = [ "//chrome/*" ]
4428 sources = [ 4430 sources = [
4429 "media/pepper_cdm_test_constants.cc", 4431 "media/pepper_cdm_test_constants.cc",
4430 "media/pepper_cdm_test_constants.h", 4432 "media/pepper_cdm_test_constants.h",
4431 ] 4433 ]
4432 } 4434 }
4433 } 4435 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698