blob: 25ba1dcac7dd9ca3ce973d96a5465302222813f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright 2013 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 "storage/browser/fileapi/sandbox_origin_database_interface.h"
namespace storage {
SandboxOriginDatabaseInterface::OriginRecord::OriginRecord() {
}
SandboxOriginDatabaseInterface::OriginRecord::OriginRecord(
const std::string& origin_in, const base::FilePath& path_in)
: origin(origin_in), path(path_in) {
}
SandboxOriginDatabaseInterface::OriginRecord::~OriginRecord() {
}
} // namespace storage
|