diff options
Diffstat (limited to 'content/common/worker_messages.h')
-rw-r--r-- | content/common/worker_messages.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/content/common/worker_messages.h b/content/common/worker_messages.h index 9b37b32..631965f 100644 --- a/content/common/worker_messages.h +++ b/content/common/worker_messages.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -135,6 +135,13 @@ IPC_SYNC_MESSAGE_CONTROL2_1(WorkerProcessHostMsg_AllowFileSystem, GURL /* origin url */, bool /* result */) +// Sent by the worker process to check whether access to IndexedDB is allowed. +IPC_SYNC_MESSAGE_CONTROL3_1(WorkerProcessHostMsg_AllowIndexedDB, + int /* worker_route_id */, + GURL /* origin url */, + string16 /* database name */, + bool /* result */) + //----------------------------------------------------------------------------- // Worker messages // These are messages sent from the renderer process to the worker process. |