diff options
Diffstat (limited to 'chrome/browser/cocoa/browser_window_cocoa.mm')
-rw-r--r-- | chrome/browser/cocoa/browser_window_cocoa.mm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/browser/cocoa/browser_window_cocoa.mm b/chrome/browser/cocoa/browser_window_cocoa.mm index e573f2d..24186b3 100644 --- a/chrome/browser/cocoa/browser_window_cocoa.mm +++ b/chrome/browser/cocoa/browser_window_cocoa.mm @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 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. @@ -317,6 +317,12 @@ void BrowserWindowCocoa::ShowRepostFormWarningDialog( new RepostFormWarningMac(GetNativeHandle(), &tab_contents->controller()); } +void BrowserWindowCocoa::ShowContentSettingsWindow( + ContentSettingsType content_type, + Profile* profile) { + NOTIMPLEMENTED(); +} + void BrowserWindowCocoa::ShowProfileErrorDialog(int message_id) { scoped_nsobject<NSAlert> alert([[NSAlert alloc] init]); [alert addButtonWithTitle:l10n_util::GetNSStringWithFixup(IDS_OK)]; |