| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "app/l10n_util.h" | 9 #include "app/l10n_util.h" |
| 10 #include "app/resource_bundle.h" | |
| 11 #include "base/base64.h" | 10 #include "base/base64.h" |
| 12 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 13 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 14 #include "base/file_path.h" | 13 #include "base/file_path.h" |
| 15 #include "base/file_util.h" | 14 #include "base/file_util.h" |
| 16 #include "base/file_version_info.h" | 15 #include "base/file_version_info.h" |
| 17 #include "base/i18n/rtl.h" | 16 #include "base/i18n/rtl.h" |
| 18 #include "base/logging.h" | 17 #include "base/logging.h" |
| 19 #include "base/stl_util-inl.h" | 18 #include "base/stl_util-inl.h" |
| 20 #include "base/third_party/nss/blapi.h" | 19 #include "base/third_party/nss/blapi.h" |
| (...skipping 1709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1730 } else { | 1729 } else { |
| 1731 return false; | 1730 return false; |
| 1732 } | 1731 } |
| 1733 } else { | 1732 } else { |
| 1734 return true; | 1733 return true; |
| 1735 } | 1734 } |
| 1736 } | 1735 } |
| 1737 } | 1736 } |
| 1738 return false; | 1737 return false; |
| 1739 } | 1738 } |
| OLD | NEW |