summaryrefslogtreecommitdiffstats
path: root/components/chrome_apps/chrome_apps_resource_util.cc
blob: 78fd827ce0c5b0ae1eea2eec38f53ade35753479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2015 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 "components/chrome_apps/chrome_apps_resource_util.h"

#include "base/logging.h"
#include "grit/chrome_apps_resources_map.h"

namespace chrome_apps {

const GritResourceMap* GetChromeAppsResources(size_t* size) {
  DCHECK(size);

  *size = kChromeAppsResourcesSize;
  return kChromeAppsResources;
}

}  // namespace chrome_apps