summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
authorrsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-03 17:53:27 +0000
committerrsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-03 17:53:27 +0000
commitf7a637efa3e7ebb96a978688795454888ddd145a (patch)
tree37d401ff250981647da6ea763b01431d43194574 /chrome/browser
parent31c49e867d2fa554a8843d9509ea8d70b2d55cfb (diff)
downloadchromium_src-f7a637efa3e7ebb96a978688795454888ddd145a.zip
chromium_src-f7a637efa3e7ebb96a978688795454888ddd145a.tar.gz
chromium_src-f7a637efa3e7ebb96a978688795454888ddd145a.tar.bz2
Fix a 10.6 SDK build error with Clang.
BUG=none TEST=none Review URL: http://codereview.chromium.org/7830048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99566 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/ui/cocoa/tab_contents/sad_tab_view.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/ui/cocoa/tab_contents/sad_tab_view.h b/chrome/browser/ui/cocoa/tab_contents/sad_tab_view.h
index 4470c2f..0bf05cd 100644
--- a/chrome/browser/ui/cocoa/tab_contents/sad_tab_view.h
+++ b/chrome/browser/ui/cocoa/tab_contents/sad_tab_view.h
@@ -6,6 +6,7 @@
#define CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_SAD_TAB_VIEW_H_
#pragma once
+#include "base/mac/cocoa_protocols.h"
#include "base/memory/scoped_nsobject.h"
#include "chrome/browser/ui/cocoa/base_view.h"
@@ -15,7 +16,7 @@
@class HyperlinkTextView;
// A view that displays the "sad tab" (aka crash page).
-@interface SadTabView : BaseView {
+@interface SadTabView : BaseView<NSTextViewDelegate> {
@private
IBOutlet NSImageView* image_;
IBOutlet NSTextField* title_;