1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "extensions/browser/api/api_resource.h"
6
7namespace extensions {
8
9ApiResource::ApiResource(const std::string& owner_extension_id)
10    : owner_extension_id_(owner_extension_id) {
11
12  CHECK(!owner_extension_id_.empty());
13}
14
15ApiResource::~ApiResource() {}
16
17bool ApiResource::IsPersistent() const {
18  return true;  // backward-compatible behavior.
19}
20
21}  // namespace extensions
22