Chromium Code Reviews| Index: base/clipboard.h |
| =================================================================== |
| --- base/clipboard.h (revision 8989) |
| +++ base/clipboard.h (working copy) |
| @@ -130,6 +130,11 @@ |
| static FormatType GetCFHDropFormatType(); |
| static FormatType GetFileDescriptorFormatType(); |
| static FormatType GetFileContentFormatZeroType(); |
| + |
| + // Duplicates any remote shared memory handle embedded inside |objects| that |
| + // was created by |process| so that it can be used by this process. |
| + static void DuplicateRemoteHandles(base::ProcessHandle process, |
| + ObjectMap* objects); |
| #endif |
| private: |
| @@ -181,6 +186,9 @@ |
| // Mark this as mutable so const methods can still do lazy initialization. |
| mutable HWND clipboard_owner_; |
| + |
| + // true if we can create a window. |
|
jam
2009/01/31 00:24:47
nit: please capitalize True.
|
| + bool create_window_; |
| #elif defined(OS_LINUX) |
| // Data is stored in the |clipboard_data_| map until it is saved to the system |
| // clipboard. The Store* functions save data to the |clipboard_data_| map. The |