| OLD | NEW |
| (Empty) | |
| 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. |
| 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 |
| 10 namespace chrome_apps { |
| 11 |
| 12 const GritResourceMap* GetChromeAppsResources(size_t* size) { |
| 13 DCHECK(size); |
| 14 |
| 15 *size = kChromeAppsResourcesSize; |
| 16 return kChromeAppsResources; |
| 17 } |
| 18 |
| 19 } // namespace chrome_apps |
| OLD | NEW |