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

Side by Side Diff: content/common/database_messages.h

Issue 9371008: Nuke from orbit corrupt websql databases. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 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) 2011 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 // Multiply-included message file, no include guard. 5 // Multiply-included message file, no include guard.
6 6
7 #include "ipc/ipc_message_macros.h" 7 #include "ipc/ipc_message_macros.h"
8 #include "ipc/ipc_param_traits.h" 8 #include "ipc/ipc_param_traits.h"
9 #include "ipc/ipc_platform_file.h" 9 #include "ipc/ipc_platform_file.h"
10 10
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 // Notifies the browser process that a database might have been modified 71 // Notifies the browser process that a database might have been modified
72 IPC_MESSAGE_CONTROL2(DatabaseHostMsg_Modified, 72 IPC_MESSAGE_CONTROL2(DatabaseHostMsg_Modified,
73 string16 /* origin identifier */, 73 string16 /* origin identifier */,
74 string16 /* database name */) 74 string16 /* database name */)
75 75
76 // Notifies the browser process that a database is about to close 76 // Notifies the browser process that a database is about to close
77 IPC_MESSAGE_CONTROL2(DatabaseHostMsg_Closed, 77 IPC_MESSAGE_CONTROL2(DatabaseHostMsg_Closed,
78 string16 /* origin identifier */, 78 string16 /* origin identifier */,
79 string16 /* database name */) 79 string16 /* database name */)
80 80
81 // Sent when a sqlite error indicates the database is corrupt.
82 IPC_MESSAGE_CONTROL3(DatabaseHostMsg_HandleSqliteError,
83 string16 /* origin identifier */,
84 string16 /* database name */,
85 int /* error */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698