OLD | NEW |
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_PARAMS_H_ | 5 #ifndef CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ |
6 #define CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ | 6 #define CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 ~ViewHostMsg_FrameNavigate_Params(); | 238 ~ViewHostMsg_FrameNavigate_Params(); |
239 | 239 |
240 // Page ID of this navigation. The renderer creates a new unique page ID | 240 // Page ID of this navigation. The renderer creates a new unique page ID |
241 // anytime a new session history entry is created. This means you'll get new | 241 // anytime a new session history entry is created. This means you'll get new |
242 // page IDs for user actions, and the old page IDs will be reloaded when | 242 // page IDs for user actions, and the old page IDs will be reloaded when |
243 // iframes are loaded automatically. | 243 // iframes are loaded automatically. |
244 int32 page_id; | 244 int32 page_id; |
245 | 245 |
246 // The frame ID for this navigation. The frame ID uniquely identifies the | 246 // The frame ID for this navigation. The frame ID uniquely identifies the |
247 // frame the navigation happened in for a given renderer. | 247 // frame the navigation happened in for a given renderer. |
248 long long frame_id; | 248 int64 frame_id; |
249 | 249 |
250 // URL of the page being loaded. | 250 // URL of the page being loaded. |
251 GURL url; | 251 GURL url; |
252 | 252 |
253 // URL of the referrer of this load. WebKit generates this based on the | 253 // URL of the referrer of this load. WebKit generates this based on the |
254 // source of the event that caused the load. | 254 // source of the event that caused the load. |
255 GURL referrer; | 255 GURL referrer; |
256 | 256 |
257 // The type of transition. | 257 // The type of transition. |
258 PageTransition::Type transition; | 258 PageTransition::Type transition; |
(...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1328 struct ParamTraits<ViewHostMsg_AccessibilityNotification_Params> { | 1328 struct ParamTraits<ViewHostMsg_AccessibilityNotification_Params> { |
1329 typedef ViewHostMsg_AccessibilityNotification_Params param_type; | 1329 typedef ViewHostMsg_AccessibilityNotification_Params param_type; |
1330 static void Write(Message* m, const param_type& p); | 1330 static void Write(Message* m, const param_type& p); |
1331 static bool Read(const Message* m, void** iter, param_type* p); | 1331 static bool Read(const Message* m, void** iter, param_type* p); |
1332 static void Log(const param_type& p, std::string* l); | 1332 static void Log(const param_type& p, std::string* l); |
1333 }; | 1333 }; |
1334 | 1334 |
1335 } // namespace IPC | 1335 } // namespace IPC |
1336 | 1336 |
1337 #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ | 1337 #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ |
OLD | NEW |