| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/utility/extensions/unpacker.h" | 5 #include "chrome/utility/extensions/unpacker.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 | 8 |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/files/file_enumerator.h" | 10 #include "base/files/file_enumerator.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "extensions/common/constants.h" | 28 #include "extensions/common/constants.h" |
| 29 #include "grit/generated_resources.h" | 29 #include "grit/generated_resources.h" |
| 30 #include "ipc/ipc_message_utils.h" | 30 #include "ipc/ipc_message_utils.h" |
| 31 #include "net/base/file_stream.h" | 31 #include "net/base/file_stream.h" |
| 32 #include "third_party/skia/include/core/SkBitmap.h" | 32 #include "third_party/skia/include/core/SkBitmap.h" |
| 33 #include "third_party/zlib/google/zip.h" | 33 #include "third_party/zlib/google/zip.h" |
| 34 #include "ui/base/l10n/l10n_util.h" | 34 #include "ui/base/l10n/l10n_util.h" |
| 35 #include "ui/gfx/size.h" | 35 #include "ui/gfx/size.h" |
| 36 | 36 |
| 37 namespace errors = extension_manifest_errors; | 37 namespace errors = extension_manifest_errors; |
| 38 namespace keys = extension_manifest_keys; | 38 namespace keys = extensions::manifest_keys; |
| 39 | 39 |
| 40 namespace { | 40 namespace { |
| 41 | 41 |
| 42 // A limit to stop us passing dangerously large canvases to the browser. | 42 // A limit to stop us passing dangerously large canvases to the browser. |
| 43 const int kMaxImageCanvas = 4096 * 4096; | 43 const int kMaxImageCanvas = 4096 * 4096; |
| 44 | 44 |
| 45 SkBitmap DecodeImage(const base::FilePath& path) { | 45 SkBitmap DecodeImage(const base::FilePath& path) { |
| 46 // Read the file from disk. | 46 // Read the file from disk. |
| 47 std::string file_contents; | 47 std::string file_contents; |
| 48 if (!base::PathExists(path) || | 48 if (!base::PathExists(path) || |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 | 315 |
| 316 void Unpacker::SetError(const std::string &error) { | 316 void Unpacker::SetError(const std::string &error) { |
| 317 SetUTF16Error(UTF8ToUTF16(error)); | 317 SetUTF16Error(UTF8ToUTF16(error)); |
| 318 } | 318 } |
| 319 | 319 |
| 320 void Unpacker::SetUTF16Error(const string16 &error) { | 320 void Unpacker::SetUTF16Error(const string16 &error) { |
| 321 error_message_ = error; | 321 error_message_ = error; |
| 322 } | 322 } |
| 323 | 323 |
| 324 } // namespace extensions | 324 } // namespace extensions |
| OLD | NEW |