| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // This file declares the ScopedClipboardWriter class, a wrapper around | 5 // This file declares the ScopedClipboardWriter class, a wrapper around |
| 6 // the Clipboard class which simplifies writing data to the system clipboard. | 6 // the Clipboard class which simplifies writing data to the system clipboard. |
| 7 // Upon deletion the class atomically writes all data to |clipboard_|, | 7 // Upon deletion the class atomically writes all data to |clipboard_|, |
| 8 // avoiding any potential race condition with other processes that are also | 8 // avoiding any potential race condition with other processes that are also |
| 9 // writing to the system clipboard. | 9 // writing to the system clipboard. |
| 10 #ifndef BASE_SCOPED_CLIPBOARD_WRITER_H_ | 10 #ifndef BASE_SCOPED_CLIPBOARD_WRITER_H_ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 // used as the bookmark title. | 44 // used as the bookmark title. |
| 45 void WriteHyperlink(const string16& link_text, const std::string& url); | 45 void WriteHyperlink(const string16& link_text, const std::string& url); |
| 46 | 46 |
| 47 // Adds a file or group of files to the clipboard. | 47 // Adds a file or group of files to the clipboard. |
| 48 void WriteFile(const FilePath& file); | 48 void WriteFile(const FilePath& file); |
| 49 void WriteFiles(const std::vector<FilePath>& files); | 49 void WriteFiles(const std::vector<FilePath>& files); |
| 50 | 50 |
| 51 // Used by WebKit to determine whether WebKit wrote the clipboard last | 51 // Used by WebKit to determine whether WebKit wrote the clipboard last |
| 52 void WriteWebSmartPaste(); | 52 void WriteWebSmartPaste(); |
| 53 | 53 |
| 54 #if defined(OS_WIN) | |
| 55 // Adds a bitmap to the clipboard | 54 // Adds a bitmap to the clipboard |
| 56 // This is the slowest way to copy a bitmap to the clipboard as we must first | |
| 57 // memcpy the pixels into GDI and the blit the bitmap to the clipboard. | |
| 58 // Pixel format is assumed to be 32-bit BI_RGB. | 55 // Pixel format is assumed to be 32-bit BI_RGB. |
| 59 void WriteBitmapFromPixels(const void* pixels, const gfx::Size& size); | 56 void WriteBitmapFromPixels(const void* pixels, const gfx::Size& size); |
| 60 #endif // defined(OS_WIN) | |
| 61 | 57 |
| 62 protected: | 58 protected: |
| 63 // We accumulate the data passed to the various targets in the |objects_| | 59 // We accumulate the data passed to the various targets in the |objects_| |
| 64 // vector, and pass it to Clipboard::WriteObjects() during object destruction. | 60 // vector, and pass it to Clipboard::WriteObjects() during object destruction. |
| 65 Clipboard::ObjectMap objects_; | 61 Clipboard::ObjectMap objects_; |
| 66 Clipboard* clipboard_; | 62 Clipboard* clipboard_; |
| 67 | 63 |
| 68 private: | 64 private: |
| 69 DISALLOW_COPY_AND_ASSIGN(ScopedClipboardWriter); | 65 DISALLOW_COPY_AND_ASSIGN(ScopedClipboardWriter); |
| 70 }; | 66 }; |
| 71 | 67 |
| 72 #endif // BASE_SCOPED_CLIPBOARD_WRITER_H_ | 68 #endif // BASE_SCOPED_CLIPBOARD_WRITER_H_ |
| OLD | NEW |