summaryrefslogtreecommitdiffstats
path: root/webkit/glue/idb_bindings.h
blob: 4ad4b98d61e22ef0add00c324497a21bfdac3fc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) 2011 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.

#include <vector>

#include "base/basictypes.h"
#include "base/string16.h"
#include "webkit/glue/webkit_glue_export.h"

namespace WebKit {
class WebIDBKey;
class WebSerializedScriptValue;
}

namespace webkit_glue {

// Warning: this method holds a V8 lock, it should only be called within a
// sandbox.
WEBKIT_GLUE_EXPORT bool IDBKeysFromValuesAndKeyPath(
    const std::vector<WebKit::WebSerializedScriptValue>&
        serialized_script_values,
    const string16& idb_key_path,
    std::vector<WebKit::WebIDBKey>* values);

WEBKIT_GLUE_EXPORT WebKit::WebSerializedScriptValue InjectIDBKey(
    const WebKit::WebIDBKey& key,
    const WebKit::WebSerializedScriptValue& value,
    const string16& idb_key_path);

}  // namespace webkit_glue