| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/ui/cocoa/tab_contents/sad_tab_controller.h" | 5 #include "chrome/browser/ui/cocoa/tab_contents/sad_tab_controller.h" |
| 6 | 6 |
| 7 #include "base/mac/bundle_locations.h" | 7 #include "base/mac/bundle_locations.h" |
| 8 #include "base/mac/mac_util.h" | 8 #include "base/mac/mac_util.h" |
| 9 #import "chrome/browser/ui/cocoa/tab_contents/sad_tab_view.h" | 9 #import "chrome/browser/ui/cocoa/tab_contents/sad_tab_view.h" |
| 10 #include "content/public/browser/web_contents.h" | 10 #include "content/public/browser/web_contents.h" |
| 11 | 11 |
| 12 namespace chrome { | 12 namespace chrome { |
| 13 | 13 |
| 14 SadTab* SadTab::Create(content::WebContents* web_contents, SadTabKind kind) { | |
| 15 return new SadTabCocoa(web_contents); | |
| 16 } | |
| 17 | |
| 18 SadTabCocoa::SadTabCocoa(content::WebContents* web_contents) | 14 SadTabCocoa::SadTabCocoa(content::WebContents* web_contents) |
| 19 : web_contents_(web_contents) { | 15 : web_contents_(web_contents) { |
| 20 } | 16 } |
| 21 | 17 |
| 22 SadTabCocoa::~SadTabCocoa() { | 18 SadTabCocoa::~SadTabCocoa() { |
| 23 } | 19 } |
| 24 | 20 |
| 25 void SadTabCocoa::Show() { | 21 void SadTabCocoa::Show() { |
| 26 sad_tab_controller_.reset( | 22 sad_tab_controller_.reset( |
| 27 [[SadTabController alloc] initWithWebContents:web_contents_]); | 23 [[SadTabController alloc] initWithWebContents:web_contents_]); |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 - (content::WebContents*)webContents { | 59 - (content::WebContents*)webContents { |
| 64 return webContents_; | 60 return webContents_; |
| 65 } | 61 } |
| 66 | 62 |
| 67 - (void)openLearnMoreAboutCrashLink:(id)sender { | 63 - (void)openLearnMoreAboutCrashLink:(id)sender { |
| 68 // Send the action up through the responder chain. | 64 // Send the action up through the responder chain. |
| 69 [NSApp sendAction:@selector(openLearnMoreAboutCrashLink:) to:nil from:self]; | 65 [NSApp sendAction:@selector(openLearnMoreAboutCrashLink:) to:nil from:self]; |
| 70 } | 66 } |
| 71 | 67 |
| 72 @end | 68 @end |
| OLD | NEW |