Small clean up to about_flags_unittest.cc.
[chromium-blink-merge.git] / components / chrome_apps / chrome_apps_resource_util.cc
blob78fd827ce0c5b0ae1eea2eec38f53ade35753479
1 // 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.
5 #include "components/chrome_apps/chrome_apps_resource_util.h"
7 #include "base/logging.h"
8 #include "grit/chrome_apps_resources_map.h"
10 namespace chrome_apps {
12 const GritResourceMap* GetChromeAppsResources(size_t* size) {
13 DCHECK(size);
15 *size = kChromeAppsResourcesSize;
16 return kChromeAppsResources;
19 } // namespace chrome_apps