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

Unified Diff: app/resource_bundle_posix.cc

Issue 5992006: Move data pack from base to app (it's just part of the resource bundle system... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years 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
« no previous file with comments | « app/resource_bundle.cc ('k') | app/resource_bundle_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/resource_bundle_posix.cc
===================================================================
--- app/resource_bundle_posix.cc (revision 69975)
+++ app/resource_bundle_posix.cc (working copy)
@@ -4,8 +4,8 @@
#include "app/resource_bundle.h"
+#include "app/data_pack.h"
#include "app/l10n_util.h"
-#include "base/data_pack.h"
#include "base/lock.h"
#include "base/logging.h"
#include "base/stl_util-inl.h"
@@ -15,8 +15,8 @@
namespace {
-base::DataPack* LoadResourcesDataPak(FilePath resources_pak_path) {
- base::DataPack* resources_pak = new base::DataPack;
+app::DataPack* LoadResourcesDataPak(FilePath resources_pak_path) {
+ app::DataPack* resources_pak = new app::DataPack;
bool success = resources_pak->Load(resources_pak_path);
if (!success) {
delete resources_pak;
« no previous file with comments | « app/resource_bundle.cc ('k') | app/resource_bundle_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698