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

Side by Side Diff: content/common/clipboard_messages.h

Issue 6672057: Move all the message files in chrome that belong in content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // Multiply-included message file, so no include guard. 5 // Multiply-included message file, so no include guard.
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "content/common/common_param_traits.h" 10 #include "content/common/common_param_traits.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 IPC_SYNC_MESSAGE_CONTROL2_3(ClipboardHostMsg_ReadData, 55 IPC_SYNC_MESSAGE_CONTROL2_3(ClipboardHostMsg_ReadData,
56 ui::Clipboard::Buffer /* buffer */, 56 ui::Clipboard::Buffer /* buffer */,
57 string16 /* type */, 57 string16 /* type */,
58 bool /* succeeded */, 58 bool /* succeeded */,
59 string16 /* data */, 59 string16 /* data */,
60 string16 /* metadata */) 60 string16 /* metadata */)
61 IPC_SYNC_MESSAGE_CONTROL1_2(ClipboardHostMsg_ReadFilenames, 61 IPC_SYNC_MESSAGE_CONTROL1_2(ClipboardHostMsg_ReadFilenames,
62 ui::Clipboard::Buffer /* buffer */, 62 ui::Clipboard::Buffer /* buffer */,
63 bool /* result */, 63 bool /* result */,
64 std::vector<string16> /* filenames */) 64 std::vector<string16> /* filenames */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698