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

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

Issue 6646005: Creates the ipclist utility that chrome security team has wanted to dump... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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) 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/dom_storage_messages.h"
6
5 #include "content/common/common_param_traits.h" 7 #include "content/common/common_param_traits.h"
6 8
7 #define IPC_MESSAGE_IMPL
8 #include "chrome/common/dom_storage_messages.h"
9 9
10 DOMStorageMsg_Event_Params::DOMStorageMsg_Event_Params() 10 DOMStorageMsg_Event_Params::DOMStorageMsg_Event_Params()
11 : storage_type(DOM_STORAGE_LOCAL) { 11 : storage_type(DOM_STORAGE_LOCAL) {
12 } 12 }
13 13
14 DOMStorageMsg_Event_Params::~DOMStorageMsg_Event_Params() { 14 DOMStorageMsg_Event_Params::~DOMStorageMsg_Event_Params() {
15 } 15 }
16 16
17 namespace IPC { 17 namespace IPC {
18 18
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 break; 116 break;
117 default: 117 default:
118 NOTIMPLEMENTED(); 118 NOTIMPLEMENTED();
119 control = "UNKNOWN"; 119 control = "UNKNOWN";
120 break; 120 break;
121 } 121 }
122 LogParam(control, l); 122 LogParam(control, l);
123 } 123 }
124 124
125 } // namespace IPC 125 } // namespace IPC
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698