Chromium Code Reviews| Index: chrome/browser/ui/cocoa/fullscreen_exit_bubble_view.h |
| diff --git a/chrome/browser/ui/cocoa/fullscreen_exit_bubble_view.h b/chrome/browser/ui/cocoa/fullscreen_exit_bubble_view.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..736b20ac3df682df93f1df2bf08eb89235522215 |
| --- /dev/null |
| +++ b/chrome/browser/ui/cocoa/fullscreen_exit_bubble_view.h |
| @@ -0,0 +1,24 @@ |
| +// 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_FULLSCREEN_EXIT_BUBBLE_VIEW_H_ |
| +#define CHROME_BROWSER_UI_COCOA_FULLSCREEN_EXIT_BUBBLE_VIEW_H_ |
| +#pragma once |
| + |
| +#import <Cocoa/Cocoa.h> |
| + |
| +#include "chrome/browser/ui/cocoa/background_gradient_view.h" |
| + |
| +// A view that handles painting the border for the FindBar. |
|
Nico
2011/09/15 04:37:32
FindBar?
jeremya
2011/09/15 06:33:28
D'oh.
|
| + |
|
Nico
2011/09/15 04:37:32
no newline
jeremya
2011/09/15 06:33:28
Done.
|
| +@interface FullscreenExitBubbleView : BackgroundGradientView { |
|
Nico
2011/09/15 04:37:32
remove {} if there's nothing in there
jeremya
2011/09/15 06:33:28
Done.
|
| +} |
| + |
| +// Specifies that mouse events over this view should be ignored by the |
| +// render host. |
| +- (BOOL)nonWebContentView; |
|
Nico
2011/09/15 04:37:32
suboptimal method name
jeremya
2011/09/15 06:33:28
Not my choice -- see http://codesearch.google.com/
|
| + |
| +@end |
| + |
| +#endif // CHROME_BROWSER_UI_COCOA_FULLSCREEN_EXIT_BUBBLE_VIEW_H_ |