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

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

Issue 3208007: Add final part of IPC plumbing for FileSystem API (Closed)
Patch Set: fixing Created 10 years, 3 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
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>
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 struct ViewHostMsg_CreateWorker_Params; 101 struct ViewHostMsg_CreateWorker_Params;
102 struct ViewHostMsg_ShowNotification_Params; 102 struct ViewHostMsg_ShowNotification_Params;
103 struct ViewMsg_New_Params; 103 struct ViewMsg_New_Params;
104 struct ViewHostMsg_CreateWindow_Params; 104 struct ViewHostMsg_CreateWindow_Params;
105 struct ViewHostMsg_RunFileChooser_Params; 105 struct ViewHostMsg_RunFileChooser_Params;
106 struct ViewMsg_ExtensionExtentInfo; 106 struct ViewMsg_ExtensionExtentInfo;
107 struct ViewMsg_ExtensionExtentsUpdated_Params; 107 struct ViewMsg_ExtensionExtentsUpdated_Params;
108 struct ViewMsg_DeviceOrientationUpdated_Params; 108 struct ViewMsg_DeviceOrientationUpdated_Params;
109 struct ViewHostMsg_DomMessage_Params; 109 struct ViewHostMsg_DomMessage_Params;
110 struct ViewHostMsg_OpenFileSystemRequest_Params; 110 struct ViewHostMsg_OpenFileSystemRequest_Params;
111 struct ViewMsg_FileSystem_DidReadDirectory_Params;
111 112
112 // Values that may be OR'd together to form the 'flags' parameter of the 113 // Values that may be OR'd together to form the 'flags' parameter of the
113 // ViewMsg_EnablePreferredSizeChangedMode message. 114 // ViewMsg_EnablePreferredSizeChangedMode message.
114 enum ViewHostMsg_EnablePreferredSizeChangedMode_Flags { 115 enum ViewHostMsg_EnablePreferredSizeChangedMode_Flags {
115 kPreferredSizeNothing, 116 kPreferredSizeNothing,
116 kPreferredSizeWidth = 1 << 0, 117 kPreferredSizeWidth = 1 << 0,
117 // Requesting the height currently requires a polling loop in render_view.cc. 118 // Requesting the height currently requires a polling loop in render_view.cc.
118 kPreferredSizeHeightThisIsSlow = 1 << 1, 119 kPreferredSizeHeightThisIsSlow = 1 << 1,
119 }; 120 };
120 121
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
734 static bool Read(const Message* m, void** iter, param_type* p); 735 static bool Read(const Message* m, void** iter, param_type* p);
735 static void Log(const param_type& p, std::string* l); 736 static void Log(const param_type& p, std::string* l);
736 }; 737 };
737 738
738 } // namespace IPC 739 } // namespace IPC
739 740
740 #define MESSAGES_INTERNAL_FILE "chrome/common/render_messages_internal.h" 741 #define MESSAGES_INTERNAL_FILE "chrome/common/render_messages_internal.h"
741 #include "ipc/ipc_message_macros.h" 742 #include "ipc/ipc_message_macros.h"
742 743
743 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ 744 #endif // CHROME_COMMON_RENDER_MESSAGES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698