| Index: components/chrome_apps/chrome_apps_resource_util.cc
|
| diff --git a/components/chrome_apps/chrome_apps_resource_util.cc b/components/chrome_apps/chrome_apps_resource_util.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..78fd827ce0c5b0ae1eea2eec38f53ade35753479
|
| --- /dev/null
|
| +++ b/components/chrome_apps/chrome_apps_resource_util.cc
|
| @@ -0,0 +1,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
|
|
|