| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/common/extensions/extension.h" | 5 #include "chrome/common/extensions/extension.h" |
| 6 | 6 |
| 7 #include <ostream> | 7 #include <ostream> |
| 8 | 8 |
| 9 #include "base/base64.h" | 9 #include "base/base64.h" |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 std::string* utf8_error) { | 331 std::string* utf8_error) { |
| 332 return Extension::Create(path, | 332 return Extension::Create(path, |
| 333 location, | 333 location, |
| 334 value, | 334 value, |
| 335 flags, | 335 flags, |
| 336 std::string(), // ID is ignored if empty. | 336 std::string(), // ID is ignored if empty. |
| 337 utf8_error); | 337 utf8_error); |
| 338 } | 338 } |
| 339 | 339 |
| 340 scoped_refptr<Extension> Extension::Create(const FilePath& path, | 340 scoped_refptr<Extension> Extension::Create(const FilePath& path, |
error: old chunk mismatch |
None
| OLD | NEW |