Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(318)

Side by Side Diff: chrome/common/extensions/extension.cc

Issue 1705009: Changing linux platform for chromeos. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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" 10 #include "app/resource_bundle.h"
11 #include "base/base64.h" 11 #include "base/base64.h"
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/file_path.h" 14 #include "base/file_path.h"
15 #include "base/file_util.h" 15 #include "base/file_util.h"
16 #include "base/file_version_info.h" 16 #include "base/file_version_info.h"
17 #include "base/logging.h" 17 #include "base/logging.h"
18 #include "base/stl_util-inl.h" 18 #include "base/stl_util-inl.h"
19 #include "base/third_party/nss/blapi.h" 19 #include "base/third_party/nss/blapi.h"
20 #include "base/third_party/nss/sha256.h" 20 #include "base/third_party/nss/sha256.h"
21 #include "base/utf_string_conversions.h" 21 #include "base/utf_string_conversions.h"
22 #include "chrome/app/chrome_version_info.h" 22 #include "chrome/app/chrome_version_info.h"
23 #include "chrome/common/chrome_constants.h" 23 #include "chrome/common/chrome_constants.h"
24 #include "chrome/common/chrome_switches.h" 24 #include "chrome/common/chrome_switches.h"
25 #include "chrome/common/extensions/extension_constants.h" 25 #include "chrome/common/extensions/extension_constants.h"
26 #include "chrome/common/extensions/extension_error_reporter.h"
27 #include "chrome/common/extensions/extension_error_utils.h" 26 #include "chrome/common/extensions/extension_error_utils.h"
28 #include "chrome/common/extensions/extension_l10n_util.h" 27 #include "chrome/common/extensions/extension_l10n_util.h"
29 #include "chrome/common/extensions/user_script.h" 28 #include "chrome/common/extensions/user_script.h"
30 #include "chrome/common/notification_service.h" 29 #include "chrome/common/notification_service.h"
31 #include "chrome/common/url_constants.h" 30 #include "chrome/common/url_constants.h"
32 #include "grit/chromium_strings.h" 31 #include "grit/chromium_strings.h"
33 #include "webkit/glue/image_decoder.h" 32 #include "webkit/glue/image_decoder.h"
34 33
35 #if defined(OS_WIN) 34 #if defined(OS_WIN)
36 #include "base/registry.h" 35 #include "base/registry.h"
(...skipping 1644 matching lines...) Expand 10 before | Expand all | Expand 10 after
1681 } else { 1680 } else {
1682 return false; 1681 return false;
1683 } 1682 }
1684 } else { 1683 } else {
1685 return true; 1684 return true;
1686 } 1685 }
1687 } 1686 }
1688 } 1687 }
1689 return false; 1688 return false;
1690 } 1689 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698