diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-23 05:56:05 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-23 05:56:05 +0000 |
commit | 426d0393942b3886c94d4fe27e22b1a132d8b41b (patch) | |
tree | 91c907cb212c2e43533f7b4e9ad85c6aa41a0864 /app/resource_bundle_posix.cc | |
parent | be8fd116e295fd7ef6c75e4dd717017d68c7fd57 (diff) | |
download | chromium_src-426d0393942b3886c94d4fe27e22b1a132d8b41b.zip chromium_src-426d0393942b3886c94d4fe27e22b1a132d8b41b.tar.gz chromium_src-426d0393942b3886c94d4fe27e22b1a132d8b41b.tar.bz2 |
Move data pack from base to app (it's just part of the resource bundle system).
TEST=it compiles
BUG=none
Review URL: http://codereview.chromium.org/5992006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70038 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/resource_bundle_posix.cc')
-rw-r--r-- | app/resource_bundle_posix.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/resource_bundle_posix.cc b/app/resource_bundle_posix.cc index 9944280..f3c868b 100644 --- a/app/resource_bundle_posix.cc +++ b/app/resource_bundle_posix.cc @@ -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; |