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

Side by Side Diff: chrome/common/render_messages_internal.h

Issue 260003: Move the clipboard stuff out of base and into app/clipboard. I renamed... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/renderer_glue.cc » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 header is meant to be included in multiple passes, hence no traditional 5 // This header is meant to be included in multiple passes, hence no traditional
6 // header guard. 6 // header guard.
7 // See ipc_message_macros.h for explanation of the macros and passes. 7 // See ipc_message_macros.h for explanation of the macros and passes.
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "build/build_config.h" 13 #include "build/build_config.h"
14 14
15 #include "base/clipboard.h" 15 #include "app/clipboard/clipboard.h"
16 #include "base/file_path.h" 16 #include "base/file_path.h"
17 #include "base/nullable_string16.h" 17 #include "base/nullable_string16.h"
18 #include "base/platform_file.h" 18 #include "base/platform_file.h"
19 #include "base/gfx/rect.h" 19 #include "base/gfx/rect.h"
20 #include "base/gfx/native_widget_types.h" 20 #include "base/gfx/native_widget_types.h"
21 #include "base/shared_memory.h" 21 #include "base/shared_memory.h"
22 #include "base/values.h" 22 #include "base/values.h"
23 #include "chrome/common/css_colors.h" 23 #include "chrome/common/css_colors.h"
24 #include "chrome/common/extensions/update_manifest.h" 24 #include "chrome/common/extensions/update_manifest.h"
25 #include "chrome/common/nacl_types.h" 25 #include "chrome/common/nacl_types.h"
(...skipping 1758 matching lines...) Expand 10 before | Expand all | Expand 10 after
1784 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileAttributes, 1784 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileAttributes,
1785 FilePath /* the name of the file */, 1785 FilePath /* the name of the file */,
1786 int32 /* a unique message ID */) 1786 int32 /* a unique message ID */)
1787 1787
1788 // Asks the browser process to return the size of a DB file 1788 // Asks the browser process to return the size of a DB file
1789 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileSize, 1789 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileSize,
1790 FilePath /* the name of the file */, 1790 FilePath /* the name of the file */,
1791 int32 /* a unique message ID */) 1791 int32 /* a unique message ID */)
1792 1792
1793 IPC_END_MESSAGES(ViewHost) 1793 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/renderer_glue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698