blob: ae9c4aae2b11bc4a411c664a7443a49f4e0c342d [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/accessibility/caption_settings_dialog.h"
#import <AppKit/AppKit.h>
namespace captions {
static NSString* kCaptionSettingsUrlString =
@"x-apple.systempreferences:com.apple.preference.universalaccess?"
@"Captioning";
void CaptionSettingsDialog::ShowCaptionSettingsDialog() {
[[NSWorkspace sharedWorkspace]
openURL:[NSURL URLWithString:kCaptionSettingsUrlString]];
}
} // namespace captions