Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef IOS_CLEAN_CHROME_BROWSER_UI_CONTEXT_MENU_CONTEXT_MENU_CONTEXT_H_ | |
| 6 #define IOS_CLEAN_CHROME_BROWSER_UI_CONTEXT_MENU_CONTEXT_MENU_CONTEXT_H_ | |
| 7 | |
| 8 #import <Foundation/Foundation.h> | |
| 9 | |
| 10 // An opaque object sent along with ContextMenuCommands that can be used to | |
|
edchin
2017/05/25 21:41:53
Could you clarify what opaque means in this contex
kkhorimoto
2017/05/26 23:20:09
Done.
| |
| 11 // identify the context menu corresponding with the command. | |
| 12 @interface ContextMenuContext : NSObject | |
| 13 @end | |
| 14 | |
| 15 #endif // IOS_CLEAN_CHROME_BROWSER_UI_CONTEXT_MENU_CONTEXT_MENU_CONTEXT_H_ | |
| OLD | NEW |