| Index: chrome/browser/ui/cocoa/tab_dialogs_views_mac.mm
|
| diff --git a/chrome/browser/ui/cocoa/tab_dialogs_views_mac.mm b/chrome/browser/ui/cocoa/tab_dialogs_views_mac.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6187e48107d1ac79a11c299c075a110bbe1f934a
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/cocoa/tab_dialogs_views_mac.mm
|
| @@ -0,0 +1,17 @@
|
| +// Copyright 2017 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/ui/cocoa/tab_dialogs_views_mac.h"
|
| +
|
| +#include "chrome/browser/ui/views/collected_cookies_views.h"
|
| +
|
| +TabDialogsViewsMac::TabDialogsViewsMac(content::WebContents* contents)
|
| + : TabDialogsCocoa(contents) {}
|
| +
|
| +TabDialogsViewsMac::~TabDialogsViewsMac() {}
|
| +
|
| +void TabDialogsViewsMac::ShowCollectedCookies() {
|
| + // Deletes itself on close.
|
| + new CollectedCookiesViews(web_contents());
|
| +}
|
|
|