summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/public/common/indexeddb/indexeddb_key.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/public/common/indexeddb/indexeddb_key.h')
-rw-r--r--chromium/third_party/blink/public/common/indexeddb/indexeddb_key.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/third_party/blink/public/common/indexeddb/indexeddb_key.h b/chromium/third_party/blink/public/common/indexeddb/indexeddb_key.h
index 78e891e3171..1b8dea4ffa9 100644
--- a/chromium/third_party/blink/public/common/indexeddb/indexeddb_key.h
+++ b/chromium/third_party/blink/public/common/indexeddb/indexeddb_key.h
@@ -12,7 +12,7 @@
#include "base/logging.h"
#include "base/strings/string16.h"
-#include "third_party/blink/common/common_export.h"
+#include "third_party/blink/public/common/common_export.h"
#include "third_party/blink/public/common/indexeddb/web_idb_types.h"
namespace blink {
@@ -23,9 +23,9 @@ class BLINK_COMMON_EXPORT IndexedDBKey {
IndexedDBKey(); // Defaults to blink::WebIDBKeyTypeInvalid.
explicit IndexedDBKey(blink::WebIDBKeyType); // must be Null or Invalid
- explicit IndexedDBKey(const KeyArray& array);
- explicit IndexedDBKey(const std::string& binary);
- explicit IndexedDBKey(const base::string16& string);
+ explicit IndexedDBKey(KeyArray array);
+ explicit IndexedDBKey(std::string binary);
+ explicit IndexedDBKey(base::string16 string);
IndexedDBKey(double number,
blink::WebIDBKeyType type); // must be date or number
IndexedDBKey(const IndexedDBKey& other);