blob: 78fd827ce0c5b0ae1eea2eec38f53ade35753479 [file] [log] [blame]
tbarzic56ebc032015-05-01 18:44:341// Copyright 2015 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 "components/chrome_apps/chrome_apps_resource_util.h"
6
7#include "base/logging.h"
8#include "grit/chrome_apps_resources_map.h"
9
10namespace chrome_apps {
11
12const GritResourceMap* GetChromeAppsResources(size_t* size) {
13 DCHECK(size);
14
15 *size = kChromeAppsResourcesSize;
16 return kChromeAppsResources;
17}
18
19} // namespace chrome_apps