diff options
author | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-08 22:55:51 +0000 |
---|---|---|
committer | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-08 22:55:51 +0000 |
commit | b8ab654da215567c8292b2abeac6c8d972aa1cfb (patch) | |
tree | b14dd428367662b8033207a01c291f7ecf480634 /chrome/installer/util | |
parent | 384988509daa2476d563e0a0bffd0c9118e7d630 (diff) | |
download | chromium_src-b8ab654da215567c8292b2abeac6c8d972aa1cfb.zip chromium_src-b8ab654da215567c8292b2abeac6c8d972aa1cfb.tar.gz chromium_src-b8ab654da215567c8292b2abeac6c8d972aa1cfb.tar.bz2 |
Fix a bunch of include problems that my deps checker tool found. Mostly I made the names of some third party includes fully qualified. I removed a qualification on a couple of the WebKit port includes that confuses it and isn't necessary (since WebKit includes aren't fully qualified).
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@604 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/util')
-rw-r--r-- | chrome/installer/util/lzma_util.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/installer/util/lzma_util.cc b/chrome/installer/util/lzma_util.cc index 45c30c4..f664d97 100644 --- a/chrome/installer/util/lzma_util.cc +++ b/chrome/installer/util/lzma_util.cc @@ -27,16 +27,16 @@ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -#include "lzma_util.h" +#include "chrome/installer/util/lzma_util.h" #include "base/file_util.h" #include "base/logging.h" #include "base/string_util.h" extern "C" { -#include "Archive/7z/7zExtract.h" -#include "Archive/7z/7zIn.h" -#include "7zCrc.h" +#include "third_party/lzma_sdk/Archive/7z/7zExtract.h" +#include "third_party/lzma_sdk/Archive/7z/7zIn.h" +#include "third_party/lzma_sdk/7zCrc.h" } |