Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(409)

Unified Diff: components/chrome_apps/chrome_apps_resource_util.cc

Issue 1103943003: Add components/chrome_apps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « components/chrome_apps/chrome_apps_resource_util.h ('k') | components/chrome_apps/chrome_apps_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698