| Index: chrome/browser/extensions/api/tabs/tabs_api.cc
|
| diff --git a/chrome/browser/extensions/api/tabs/tabs_api.cc b/chrome/browser/extensions/api/tabs/tabs_api.cc
|
| index 4816da7e0687d8ce20a9b3f0af4717c47edc2252..c1158a40bf88c3deff52aaba10a6a2d9f0283615 100644
|
| --- a/chrome/browser/extensions/api/tabs/tabs_api.cc
|
| +++ b/chrome/browser/extensions/api/tabs/tabs_api.cc
|
| @@ -17,6 +17,7 @@
|
| #include "base/stl_util.h"
|
| #include "base/strings/string16.h"
|
| #include "base/strings/string_number_conversions.h"
|
| +#include "base/strings/stringprintf.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "chrome/browser/apps/scoped_keep_alive.h"
|
| @@ -43,6 +44,7 @@
|
| #include "chrome/browser/ui/host_desktop.h"
|
| #include "chrome/browser/ui/panels/panel_manager.h"
|
| #include "chrome/browser/ui/tabs/tab_strip_model.h"
|
| +#include "chrome/browser/ui/tabs/tab_utils.h"
|
| #include "chrome/browser/ui/window_sizer/window_sizer.h"
|
| #include "chrome/browser/web_applications/web_app.h"
|
| #include "chrome/common/chrome_switches.h"
|
| @@ -908,6 +910,16 @@ bool TabsQueryFunction::RunSync() {
|
| continue;
|
| }
|
|
|
| + if (!MatchesBool(params->query_info.audible.get(),
|
| + chrome::IsPlayingAudio(web_contents))) {
|
| + continue;
|
| + }
|
| +
|
| + if (!MatchesBool(params->query_info.muted.get(),
|
| + chrome::IsTabAudioMuted(web_contents))) {
|
| + continue;
|
| + }
|
| +
|
| if (!title.empty() && !MatchPattern(web_contents->GetTitle(),
|
| base::UTF8ToUTF16(title)))
|
| continue;
|
| @@ -1185,6 +1197,19 @@ bool TabsUpdateFunction::RunAsync() {
|
| tab_index = tab_strip->GetIndexOfWebContents(contents);
|
| }
|
|
|
| + if (params->update_properties.muted.get()) {
|
| + const char* muteSwitch = switches::kEnableTabAudioMuting;
|
| + if (base::CommandLine::ForCurrentProcess()->HasSwitch(muteSwitch)) {
|
| + chrome::SetTabAudioMuted(contents, *params->update_properties.muted,
|
| + extension()->id());
|
| + } else {
|
| + WriteToConsole(
|
| + content::CONSOLE_MESSAGE_LEVEL_WARNING,
|
| + base::StringPrintf(
|
| + "Failed to update mute state, --%s must be enabled", muteSwitch));
|
| + }
|
| + }
|
| +
|
| if (params->update_properties.opener_tab_id.get()) {
|
| int opener_id = *params->update_properties.opener_tab_id;
|
|
|
|
|