Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(459)

Side by Side Diff: content/public/browser/render_widget_host_view_mac_delegate.h

Issue 18009003: Instant Extended: Delete unused overlay code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_mac.mm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_MAC_DELEGATE_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_MAC_DELEGATE_H_
6 #define CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_MAC_DELEGATE_H_ 6 #define CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_MAC_DELEGATE_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 // This protocol is used as a delegate for the NSView class used in the 10 // This protocol is used as a delegate for the NSView class used in the
(...skipping 23 matching lines...) Expand all
34 34
35 // Notification of whether the view has a horizontal scrollbar. 35 // Notification of whether the view has a horizontal scrollbar.
36 - (void)setHasHorizontalScrollbar:(BOOL)has_horizontal_scrollbar; 36 - (void)setHasHorizontalScrollbar:(BOOL)has_horizontal_scrollbar;
37 37
38 // Provides validation of user interface items. If the return value is NO, then 38 // Provides validation of user interface items. If the return value is NO, then
39 // the delegate is unaware of that item and |valid| is undefined. Otherwise, 39 // the delegate is unaware of that item and |valid| is undefined. Otherwise,
40 // |valid| contains the validity of the specified item. 40 // |valid| contains the validity of the specified item.
41 - (BOOL)validateUserInterfaceItem:(id<NSValidatedUserInterfaceItem>)item 41 - (BOOL)validateUserInterfaceItem:(id<NSValidatedUserInterfaceItem>)item
42 isValidItem:(BOOL*)valid; 42 isValidItem:(BOOL*)valid;
43 43
44 // Notification that the compositing IO surface has been created.
45 - (void)compositingIOSurfaceCreated;
46
47 @end 44 @end
48 45
49 #endif // CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_MAC_DELEGATE_H_ 46 #endif // CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_MAC_DELEGATE_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698