| Index: chrome/browser/tab_contents/tab_contents_view_mac.h
|
| ===================================================================
|
| --- chrome/browser/tab_contents/tab_contents_view_mac.h (revision 97919)
|
| +++ chrome/browser/tab_contents/tab_contents_view_mac.h (working copy)
|
| @@ -6,6 +6,8 @@
|
| #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_MAC_H_
|
| #pragma once
|
|
|
| +#if defined(__OBJC__)
|
| +
|
| #import <Cocoa/Cocoa.h>
|
|
|
| #include <string>
|
| @@ -148,4 +150,14 @@
|
| DISALLOW_COPY_AND_ASSIGN(TabContentsViewMac);
|
| };
|
|
|
| +#endif // __OBJC__
|
| +
|
| +// Functions that may be accessed from non-Objective-C C/C++ code.
|
| +class TabContents;
|
| +class TabContentsView;
|
| +
|
| +namespace tab_contents_view_mac {
|
| +TabContentsView* CreateTabContentsView(TabContents* tab_contents);
|
| +}
|
| +
|
| #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_MAC_H_
|
|
|