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

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

Issue 6598053: P2P Sockets host implementation. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Addressed all comments 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) 2010 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 #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
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 } 65 }
66 } 66 }
67 67
68 struct AudioBuffersState; 68 struct AudioBuffersState;
69 class ExtensionExtent; 69 class ExtensionExtent;
70 class GURL; 70 class GURL;
71 class SkBitmap; 71 class SkBitmap;
72 class URLPattern; 72 class URLPattern;
73 struct ContextMenuParams; 73 struct ContextMenuParams;
74 struct EditCommand; 74 struct EditCommand;
75 struct RendererPreferences;
75 struct ResourceResponseHead; 76 struct ResourceResponseHead;
76 struct SyncLoadResult; 77 struct SyncLoadResult;
77 struct RendererPreferences;
78 struct WebDropData; 78 struct WebDropData;
79 struct WebMenuItem; 79 struct WebMenuItem;
80 struct WebPreferences; 80 struct WebPreferences;
81 81
82 // Forward declarations of structures used to store data for when we have a lot 82 // Forward declarations of structures used to store data for when we have a lot
83 // of parameters. 83 // of parameters.
84 struct ViewMsg_Navigate_Params; 84 struct ViewMsg_Navigate_Params;
85 struct ViewMsg_AudioStreamState_Params; 85 struct ViewMsg_AudioStreamState_Params;
86 struct ViewMsg_StopFinding_Params; 86 struct ViewMsg_StopFinding_Params;
87 struct ViewHostMsg_GetSearchProviderInstallState_Params; 87 struct ViewHostMsg_GetSearchProviderInstallState_Params;
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 static void Write(Message* m, const param_type& p); 528 static void Write(Message* m, const param_type& p);
529 static bool Read(const Message* m, void** iter, param_type* p); 529 static bool Read(const Message* m, void** iter, param_type* p);
530 static void Log(const param_type& p, std::string* l); 530 static void Log(const param_type& p, std::string* l);
531 }; 531 };
532 532
533 } // namespace IPC 533 } // namespace IPC
534 534
535 #include "chrome/common/render_messages_internal.h" 535 #include "chrome/common/render_messages_internal.h"
536 536
537 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ 537 #endif // CHROME_COMMON_RENDER_MESSAGES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698