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

Side by Side Diff: base/scoped_clipboard_writer.h

Issue 42278: Fix incorrect guards in base/. (Closed)
Patch Set: Created 11 years, 9 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
« no previous file with comments | « base/perftimer.h ('k') | base/thread_collision_warner.h » ('j') | 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) 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 protected: 62 protected:
63 // We accumulate the data passed to the various targets in the |objects_| 63 // We accumulate the data passed to the various targets in the |objects_|
64 // vector, and pass it to Clipboard::WriteObjects() during object destruction. 64 // vector, and pass it to Clipboard::WriteObjects() during object destruction.
65 Clipboard::ObjectMap objects_; 65 Clipboard::ObjectMap objects_;
66 Clipboard* clipboard_; 66 Clipboard* clipboard_;
67 67
68 private: 68 private:
69 DISALLOW_COPY_AND_ASSIGN(ScopedClipboardWriter); 69 DISALLOW_COPY_AND_ASSIGN(ScopedClipboardWriter);
70 }; 70 };
71 71
72 #endif // SCOPED_CLIPBOARD_WRITER_H_ 72 #endif // BASE_SCOPED_CLIPBOARD_WRITER_H_
OLDNEW
« no previous file with comments | « base/perftimer.h ('k') | base/thread_collision_warner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698