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/common/extensions/extension_constants.h" | 5 #include "chrome/common/extensions/extension_constants.h" |
6 #include "chrome/common/extensions/extension_manifest_constants.h" | |
7 | 6 |
8 #include <vector> | 7 #include <vector> |
9 | 8 |
10 #include "base/command_line.h" | 9 #include "base/command_line.h" |
11 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
12 #include "chrome/common/chrome_switches.h" | 11 #include "chrome/common/chrome_switches.h" |
13 #include "net/base/escape.h" | 12 #include "net/base/escape.h" |
14 #include "net/base/url_util.h" | 13 #include "net/base/url_util.h" |
15 | 14 |
16 namespace extension_urls { | 15 namespace extension_urls { |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 | 177 |
179 const int kScriptBadgeIconSizes[] = { | 178 const int kScriptBadgeIconSizes[] = { |
180 EXTENSION_ICON_BITTY, // 16 | 179 EXTENSION_ICON_BITTY, // 16 |
181 2 * EXTENSION_ICON_BITTY // 32 | 180 2 * EXTENSION_ICON_BITTY // 32 |
182 }; | 181 }; |
183 | 182 |
184 const size_t kNumScriptBadgeIconSizes = | 183 const size_t kNumScriptBadgeIconSizes = |
185 arraysize(kScriptBadgeIconSizes); | 184 arraysize(kScriptBadgeIconSizes); |
186 | 185 |
187 } // namespace extension_misc | 186 } // namespace extension_misc |
OLD | NEW |