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

Issue 12025010: Move default_locale out of Extension class (Closed)

Created:
7 years, 11 months ago by Joe Thomas
Modified:
7 years, 10 months ago
CC:
chromium-reviews, Aaron Boodman, darin-cc_chromium.org, sail+watch_chromium.org, chromium-apps-reviews_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Move default_locale out of Extension class. BUG=159265 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=179711

Patch Set 1 #

Total comments: 12

Patch Set 2 : patch updated #

Total comments: 2

Patch Set 3 : ChromeContentUtilityClient changes #

Patch Set 4 : Android gyp changes + latest master #

Patch Set 5 : Latest Master #

Patch Set 6 : unittests fixed #

Patch Set 7 : Latest Master (new ManifestHandler interface) #

Patch Set 8 : extension_service_unittest fixed #

Unified diffs Side-by-side diffs Delta from patch set Stats (+220 lines, -73 lines) Patch
M chrome/browser/extensions/api/i18n/i18n_api.h View 1 2 1 chunk +27 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/i18n/i18n_api.cc View 2 chunks +28 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/tabs/tabs_api.cc View 1 2 3 4 5 6 2 chunks +2 lines, -1 line 0 comments Download
M chrome/browser/extensions/extension_service_unittest.cc View 1 2 3 4 5 6 7 2 chunks +6 lines, -0 lines 0 comments Download
M chrome/browser/extensions/sandboxed_unpacker_unittest.cc View 1 2 3 4 5 3 chunks +4 lines, -3 lines 0 comments Download
M chrome/browser/extensions/user_script_master.cc View 2 chunks +2 lines, -1 line 0 comments Download
M chrome/browser/profiles/profile_dependency_manager.cc View 1 2 3 4 5 6 2 chunks +2 lines, -0 lines 0 comments Download
chrome/browser/renderer_host/chrome_render_message_filter.cc View 1 2 2 chunks +2 lines, -1 line 0 comments Download
M chrome/chrome_common.gypi View 1 2 3 2 chunks +4 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 5 6 2 chunks +2 lines, -1 line 0 comments Download
A chrome/common/extensions/api/i18n/default_locale_handler.h View 1 2 3 4 5 6 1 chunk +36 lines, -0 lines 0 comments Download
A chrome/common/extensions/api/i18n/default_locale_handler.cc View 1 2 3 4 5 6 1 chunk +44 lines, -0 lines 0 comments Download
A chrome/common/extensions/api/i18n/default_locale_manifest_unittest.cc View 1 1 chunk +30 lines, -0 lines 0 comments Download
M chrome/common/extensions/extension.h View 1 2 3 4 5 6 3 chunks +0 lines, -5 lines 0 comments Download
M chrome/common/extensions/extension.cc View 1 2 3 4 5 6 2 chunks +0 lines, -12 lines 0 comments Download
M chrome/common/extensions/extension_file_util.cc View 1 2 3 2 chunks +3 lines, -1 line 0 comments Download
chrome/common/extensions/extension_file_util_unittest.cc View 1 2 3 2 chunks +4 lines, -0 lines 0 comments Download
M chrome/common/extensions/manifest_handler.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
A + chrome/common/extensions/manifest_tests/extension_manifests_default_extent_path_unittest.cc View 2 chunks +1 line, -13 lines 0 comments Download
D chrome/common/extensions/manifest_tests/extension_manifests_default_unittest.cc View 1 chunk +0 lines, -30 lines 0 comments Download
M chrome/common/extensions/manifest_tests/extension_manifests_initvalue_unittest.cc View 1 2 3 4 5 2 chunks +7 lines, -2 lines 0 comments Download
M chrome/common/extensions/unpacker.cc View 2 chunks +3 lines, -2 lines 0 comments Download
M chrome/common/extensions/unpacker_unittest.cc View 1 2 chunks +8 lines, -0 lines 0 comments Download
M chrome/utility/chrome_content_utility_client.cc View 1 2 3 2 chunks +4 lines, -0 lines 0 comments Download

Messages

Total messages: 28 (0 generated)
Joe Thomas
7 years, 11 months ago (2013-01-18 02:03:07 UTC) #1
Devlin
https://codereview.chromium.org/12025010/diff/1/chrome/browser/extensions/api/i18n/i18n_api.cc File chrome/browser/extensions/api/i18n/i18n_api.cc (right): https://codereview.chromium.org/12025010/diff/1/chrome/browser/extensions/api/i18n/i18n_api.cc#newcode67 chrome/browser/extensions/api/i18n/i18n_api.cc:67: new DefaultLocaleHandler); Hmm. We've been shifting to registering functions ...
7 years, 11 months ago (2013-01-18 21:08:46 UTC) #2
Joe Thomas
Thanks for the review. Patch updated. https://codereview.chromium.org/12025010/diff/1/chrome/browser/extensions/api/i18n/i18n_api.cc File chrome/browser/extensions/api/i18n/i18n_api.cc (right): https://codereview.chromium.org/12025010/diff/1/chrome/browser/extensions/api/i18n/i18n_api.cc#newcode67 chrome/browser/extensions/api/i18n/i18n_api.cc:67: new DefaultLocaleHandler); On ...
7 years, 11 months ago (2013-01-18 22:16:57 UTC) #3
Devlin
lgtm
7 years, 11 months ago (2013-01-18 23:30:33 UTC) #4
Yoyo Zhou
https://codereview.chromium.org/12025010/diff/5002/chrome/common/extensions/extension_file_util.cc File chrome/common/extensions/extension_file_util.cc (right): https://codereview.chromium.org/12025010/diff/5002/chrome/common/extensions/extension_file_util.cc#newcode567 chrome/common/extensions/extension_file_util.cc:567: extensions::LocaleInfo::GetDefaultLocale(&extension); This validation is done in the utility process ...
7 years, 11 months ago (2013-01-22 20:15:56 UTC) #5
Joe Thomas
Added ManifestHandler registration in ChromeContentUtilityClient. Also rebased the patch. https://chromiumcodereview.appspot.com/12025010/diff/5002/chrome/common/extensions/extension_file_util.cc File chrome/common/extensions/extension_file_util.cc (right): https://chromiumcodereview.appspot.com/12025010/diff/5002/chrome/common/extensions/extension_file_util.cc#newcode567 chrome/common/extensions/extension_file_util.cc:567: ...
7 years, 11 months ago (2013-01-23 20:01:08 UTC) #6
Yoyo Zhou
LGTM
7 years, 11 months ago (2013-01-23 22:45:47 UTC) #7
Joe Thomas
+ben for c/b/renderer_host/, chrome/utility/ & gyp changes +mirandac for profiles/
7 years, 11 months ago (2013-01-23 23:12:19 UTC) #8
Miranda Callahan
On 2013/01/23 23:12:19, Joe Thomas wrote: > +ben for c/b/renderer_host/, chrome/utility/ & gyp changes > ...
7 years, 11 months ago (2013-01-24 14:07:20 UTC) #9
Ben Goodger (Google)
lgtm
7 years, 10 months ago (2013-01-28 17:37:04 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/MHX348@motorola.com/12025010/14001
7 years, 10 months ago (2013-01-28 17:39:40 UTC) #11
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 10 months ago (2013-01-28 18:17:42 UTC) #12
Joe Thomas
Yoyo@, It looks like I don't have the permission to add trybots. It's giving me ...
7 years, 10 months ago (2013-01-28 22:33:38 UTC) #13
Yoyo Zhou
On 2013/01/28 22:33:38, Joe Thomas wrote: > Yoyo@, > > It looks like I don't ...
7 years, 10 months ago (2013-01-28 22:42:45 UTC) #14
Joe Thomas
Yoyo@ Could you please add the android bot again? The previous patch failed to apply ...
7 years, 10 months ago (2013-01-29 00:01:00 UTC) #15
Yoyo Zhou
On 2013/01/29 00:01:00, Joe Thomas wrote: > Yoyo@ > > Could you please add the ...
7 years, 10 months ago (2013-01-29 00:07:34 UTC) #16
Joe Thomas
On 2013/01/29 00:07:34, Yoyo Zhou wrote: > On 2013/01/29 00:01:00, Joe Thomas wrote: > > ...
7 years, 10 months ago (2013-01-29 00:13:13 UTC) #17
Joe Thomas
Yoyo@, Can you please try adding the Android bots again? Thanks.
7 years, 10 months ago (2013-01-29 19:51:32 UTC) #18
Joe Thomas
+ nileshagrawal@ for android gypi changes. Yoyo@ Fixed the unittests in sandboxed_unpacker_unittest.cc & extension_manifests_initvalue_unittest.cc
7 years, 10 months ago (2013-01-29 22:24:44 UTC) #19
Yoyo Zhou
LGTM
7 years, 10 months ago (2013-01-29 22:33:47 UTC) #20
nilesh
On 2013/01/29 22:24:44, Joe Thomas wrote: > + nileshagrawal@ for android gypi changes. LGTM
7 years, 10 months ago (2013-01-29 22:47:58 UTC) #21
Joe Thomas
Yoyo@, Please take a look again. Using the new ManifestHandler interface (default_locale_handler.cc/h) Fixed couple of ...
7 years, 10 months ago (2013-01-30 01:08:55 UTC) #22
Yoyo Zhou
On 2013/01/30 01:08:55, Joe Thomas wrote: > Yoyo@, > > Please take a look again. ...
7 years, 10 months ago (2013-01-30 01:10:59 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/MHX348@motorola.com/12025010/34006
7 years, 10 months ago (2013-01-30 01:14:29 UTC) #24
commit-bot: I haz the power
Retried try job too often on mac_rel for step(s) unit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=mac_rel&number=94198
7 years, 10 months ago (2013-01-30 03:55:16 UTC) #25
Joe Thomas
Yoyo@ FYI - Fixed a unittest in extension_service_unittest.cc
7 years, 10 months ago (2013-01-30 20:01:25 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/MHX348@motorola.com/12025010/29012
7 years, 10 months ago (2013-01-30 20:06:59 UTC) #27
commit-bot: I haz the power
7 years, 10 months ago (2013-01-30 22:16:34 UTC) #28
Message was sent while issue was closed.
Change committed as 179711

Powered by Google App Engine
This is Rietveld 408576698