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

Side by Side Diff: chrome/common/render_messages_params.cc

Issue 6532008: Fix chromium-style compile error that got in the tree since yesterday. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes for Feb 17th Created 9 years, 10 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) 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 #include "chrome/common/render_messages_params.h" 5 #include "chrome/common/render_messages_params.h"
6 6
7 #include "chrome/common/navigation_gesture.h" 7 #include "chrome/common/navigation_gesture.h"
8 #include "chrome/common/common_param_traits.h" 8 #include "chrome/common/common_param_traits.h"
9 #include "chrome/common/extensions/extension_constants.h" 9 #include "chrome/common/extensions/extension_constants.h"
10 #include "chrome/common/render_messages.h" 10 #include "chrome/common/render_messages.h"
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 265
266 ViewHostMsg_DomMessage_Params::ViewHostMsg_DomMessage_Params() 266 ViewHostMsg_DomMessage_Params::ViewHostMsg_DomMessage_Params()
267 : request_id(0), 267 : request_id(0),
268 has_callback(false), 268 has_callback(false),
269 user_gesture(false) { 269 user_gesture(false) {
270 } 270 }
271 271
272 ViewHostMsg_DomMessage_Params::~ViewHostMsg_DomMessage_Params() { 272 ViewHostMsg_DomMessage_Params::~ViewHostMsg_DomMessage_Params() {
273 } 273 }
274 274
275 ViewHostMsg_MalwareDOMDetails_Node::ViewHostMsg_MalwareDOMDetails_Node() {
276 }
277
278 ViewHostMsg_MalwareDOMDetails_Node::~ViewHostMsg_MalwareDOMDetails_Node() {
279 }
280
281 ViewHostMsg_MalwareDOMDetails_Params::ViewHostMsg_MalwareDOMDetails_Params() {
282 }
283
284 ViewHostMsg_MalwareDOMDetails_Params::~ViewHostMsg_MalwareDOMDetails_Params() {
285 }
286
275 ViewMsg_ExtensionLoaded_Params::ViewMsg_ExtensionLoaded_Params() { 287 ViewMsg_ExtensionLoaded_Params::ViewMsg_ExtensionLoaded_Params() {
276 } 288 }
277 289
278 ViewMsg_ExtensionLoaded_Params::~ViewMsg_ExtensionLoaded_Params() { 290 ViewMsg_ExtensionLoaded_Params::~ViewMsg_ExtensionLoaded_Params() {
279 } 291 }
280 292
281 ViewMsg_ExtensionLoaded_Params::ViewMsg_ExtensionLoaded_Params( 293 ViewMsg_ExtensionLoaded_Params::ViewMsg_ExtensionLoaded_Params(
282 const ViewMsg_ExtensionLoaded_Params& other) 294 const ViewMsg_ExtensionLoaded_Params& other)
283 : manifest(other.manifest->DeepCopy()), 295 : manifest(other.manifest->DeepCopy()),
284 location(other.location), 296 location(other.location),
(...skipping 1405 matching lines...) Expand 10 before | Expand all | Expand 10 after
1690 l->append(", "); 1702 l->append(", ");
1691 LogParam(p.tag_name, l); 1703 LogParam(p.tag_name, l);
1692 l->append(", "); 1704 l->append(", ");
1693 LogParam(p.parent, l); 1705 LogParam(p.parent, l);
1694 l->append(", "); 1706 l->append(", ");
1695 LogParam(p.children, l); 1707 LogParam(p.children, l);
1696 l->append(")"); 1708 l->append(")");
1697 } 1709 }
1698 1710
1699 } // namespace IPC 1711 } // namespace IPC
OLDNEW
« no previous file with comments | « chrome/common/render_messages_params.h ('k') | chrome/test/webdriver/commands/cookie_commands.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698