Index: chrome/common/gfx_resource_provider.cc |
diff --git a/chrome/common/gfx_resource_provider.cc b/chrome/common/gfx_resource_provider.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f508c2890a443cdca0421780ee774a546bf23356 |
--- /dev/null |
+++ b/chrome/common/gfx_resource_provider.cc |
@@ -0,0 +1,16 @@ |
+// Copyright (c) 2011 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 "chrome/common/gfx_resource_provider.h" |
+ |
+#include "app/resource_bundle.h" |
+#include "base/string_piece.h" |
+ |
+namespace chrome { |
+ |
+base::StringPiece GfxResourceProvider(int key) { |
+ return ResourceBundle::GetSharedInstance().GetRawDataResource(key); |
+} |
+ |
+} // namespace chrome |