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

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

Issue 5680007: Make IndexedDBDispatcherHost be a message filter and move its messages into a... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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/indexed_db_messages.cc ('k') | chrome/common/render_messages.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ 5 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_
6 #define CHROME_COMMON_RENDER_MESSAGES_H_ 6 #define CHROME_COMMON_RENDER_MESSAGES_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 // TODO(erg): This list has been temporarily annotated by erg while doing work 12 // TODO(erg): This list has been temporarily annotated by erg while doing work
13 // on which headers to pull out. 13 // on which headers to pull out.
14 #include "app/clipboard/clipboard.h" // enum 14 #include "app/clipboard/clipboard.h" // enum
15 #include "base/basictypes.h" 15 #include "base/basictypes.h"
16 #include "base/ref_counted.h" 16 #include "base/ref_counted.h"
17 #include "base/string16.h" 17 #include "base/string16.h"
18 #include "chrome/common/common_param_traits.h" 18 #include "chrome/common/common_param_traits.h"
19 #include "chrome/common/css_colors.h" 19 #include "chrome/common/css_colors.h"
20 #include "chrome/common/dom_storage_common.h" 20 #include "chrome/common/dom_storage_common.h"
21 #include "chrome/common/indexed_db_param_traits.h"
22 #include "chrome/common/page_transition_types.h" 21 #include "chrome/common/page_transition_types.h"
23 #include "chrome/common/translate_errors.h" 22 #include "chrome/common/translate_errors.h"
24 #include "chrome/common/view_types.h" 23 #include "chrome/common/view_types.h"
25 #include "chrome/common/webkit_param_traits.h" 24 #include "chrome/common/webkit_param_traits.h"
26 #include "ipc/ipc_message_utils.h" 25 #include "ipc/ipc_message_utils.h"
27 #include "ipc/ipc_platform_file.h" // ifdefed typedef. 26 #include "ipc/ipc_platform_file.h" // ifdefed typedef.
28 #include "third_party/WebKit/WebKit/chromium/public/WebStorageArea.h" 27 #include "third_party/WebKit/WebKit/chromium/public/WebStorageArea.h"
29 #include "webkit/appcache/appcache_interfaces.h" // enum appcache::Status 28 #include "webkit/appcache/appcache_interfaces.h" // enum appcache::Status
30 #include "webkit/fileapi/file_system_types.h" // enum fileapi::FileSystemType 29 #include "webkit/fileapi/file_system_types.h" // enum fileapi::FileSystemType
31 #include "webkit/glue/plugins/pepper_dir_contents.h" 30 #include "webkit/glue/plugins/pepper_dir_contents.h"
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 struct ViewMsg_ClosePage_Params; 96 struct ViewMsg_ClosePage_Params;
98 struct ViewHostMsg_Resource_Request; 97 struct ViewHostMsg_Resource_Request;
99 struct ViewMsg_Print_Params; 98 struct ViewMsg_Print_Params;
100 struct ViewMsg_PrintPage_Params; 99 struct ViewMsg_PrintPage_Params;
101 struct ViewMsg_PrintPages_Params; 100 struct ViewMsg_PrintPages_Params;
102 struct ViewHostMsg_DidPrintPage_Params; 101 struct ViewHostMsg_DidPrintPage_Params;
103 struct ViewHostMsg_Audio_CreateStream_Params; 102 struct ViewHostMsg_Audio_CreateStream_Params;
104 struct ViewHostMsg_ShowPopup_Params; 103 struct ViewHostMsg_ShowPopup_Params;
105 struct ViewHostMsg_ScriptedPrint_Params; 104 struct ViewHostMsg_ScriptedPrint_Params;
106 struct ViewMsg_DOMStorageEvent_Params; 105 struct ViewMsg_DOMStorageEvent_Params;
107 struct ViewHostMsg_IDBFactoryOpen_Params;
108 struct ViewHostMsg_IDBDatabaseCreateObjectStore_Params;
109 struct ViewHostMsg_IDBIndexOpenCursor_Params;
110 struct ViewHostMsg_IDBObjectStoreCreateIndex_Params;
111 struct ViewHostMsg_IDBObjectStoreOpenCursor_Params;
112 struct ViewHostMsg_IDBObjectStorePut_Params;
113 struct ViewMsg_ExecuteCode_Params; 106 struct ViewMsg_ExecuteCode_Params;
114 struct ViewHostMsg_CreateWorker_Params; 107 struct ViewHostMsg_CreateWorker_Params;
115 struct ViewHostMsg_ShowNotification_Params; 108 struct ViewHostMsg_ShowNotification_Params;
116 struct ViewMsg_New_Params; 109 struct ViewMsg_New_Params;
117 struct ViewHostMsg_CreateWindow_Params; 110 struct ViewHostMsg_CreateWindow_Params;
118 struct ViewHostMsg_RunFileChooser_Params; 111 struct ViewHostMsg_RunFileChooser_Params;
119 struct ViewMsg_ExtensionRendererInfo; 112 struct ViewMsg_ExtensionRendererInfo;
120 struct ViewMsg_ExtensionsUpdated_Params; 113 struct ViewMsg_ExtensionsUpdated_Params;
121 struct ViewMsg_DeviceOrientationUpdated_Params; 114 struct ViewMsg_DeviceOrientationUpdated_Params;
122 struct ViewHostMsg_DomMessage_Params; 115 struct ViewHostMsg_DomMessage_Params;
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 static void Write(Message* m, const param_type& p); 629 static void Write(Message* m, const param_type& p);
637 static bool Read(const Message* m, void** iter, param_type* p); 630 static bool Read(const Message* m, void** iter, param_type* p);
638 static void Log(const param_type& p, std::string* l); 631 static void Log(const param_type& p, std::string* l);
639 }; 632 };
640 633
641 } // namespace IPC 634 } // namespace IPC
642 635
643 #include "chrome/common/render_messages_internal.h" 636 #include "chrome/common/render_messages_internal.h"
644 637
645 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ 638 #endif // CHROME_COMMON_RENDER_MESSAGES_H_
OLDNEW
« no previous file with comments | « chrome/common/indexed_db_messages.cc ('k') | chrome/common/render_messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698