| 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_cocoa.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) { | 14 SadTab* SadTab::Create(content::WebContents* web_contents, SadTabKind kind) { |
| 15 return new SadTabCocoa(web_contents); | 15 return new SadTabCocoa(web_contents); |
| 16 } | 16 } |
| 17 | 17 |
| 18 SadTabCocoa::SadTabCocoa(content::WebContents* web_contents) | 18 SadTabCocoa::SadTabCocoa(content::WebContents* web_contents) |
| 19 : web_contents_(web_contents) { | 19 : web_contents_(web_contents) { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 - (content::WebContents*)webContents { | 63 - (content::WebContents*)webContents { |
| 64 return webContents_; | 64 return webContents_; |
| 65 } | 65 } |
| 66 | 66 |
| 67 - (void)openLearnMoreAboutCrashLink:(id)sender { | 67 - (void)openLearnMoreAboutCrashLink:(id)sender { |
| 68 // Send the action up through the responder chain. | 68 // Send the action up through the responder chain. |
| 69 [NSApp sendAction:@selector(openLearnMoreAboutCrashLink:) to:nil from:self]; | 69 [NSApp sendAction:@selector(openLearnMoreAboutCrashLink:) to:nil from:self]; |
| 70 } | 70 } |
| 71 | 71 |
| 72 @end | 72 @end |
| OLD | NEW |