| Index: chrome/browser/ui/cocoa/bookmarks/bookmark_cell_single_line.h
|
| diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_cell_single_line.h b/chrome/browser/ui/cocoa/bookmarks/bookmark_cell_single_line.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..250db72cc5648f2b9fe3593a0b762315cb490cfc
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_cell_single_line.h
|
| @@ -0,0 +1,18 @@
|
| +// Copyright (c) 2011 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.
|
| +
|
| +#ifndef CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_CELL_SINGLE_LINE_H_
|
| +#define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_CELL_SINGLE_LINE_H_
|
| +#pragma once
|
| +
|
| +#import <Cocoa/Cocoa.h>
|
| +
|
| +// Provides a category for 10.5 compilation of a selector which is only
|
| +// available on 10.6+. This purely enables compilation when the selector
|
| +// is present and does not implement the method itself.
|
| +@interface NSCell(multilinebookmarks)
|
| +- (void)setUsesSingleLineMode:(BOOL)flag;
|
| +@end
|
| +
|
| +#endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_CELL_SINGLE_LINE_H_
|
|
|