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

Issue 864093002: Move sandboxed_unpacker.{h,cc} from chrome/ to extensions/ (Closed)

Created:
5 years, 11 months ago by asargent_no_longer_on_chrome
Modified:
5 years, 11 months ago
CC:
chromium-reviews, extensions-reviews_chromium.org, nkostylev+watch_chromium.org, asvitkine+watch_chromium.org, oshima+watch_chromium.org, chromium-apps-reviews_chromium.org, stevenjb+watch_chromium.org, davemoore+watch_chromium.org, Dmitry Polukhin
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Move sandboxed_unpacker.{h,cc} from chrome/ to extensions/ This is a mostly mechanical change to move these files over, and make corresponding changes to strings, build files, and include paths. BUG=447014 Committed: https://crrev.com/275faaaa9d7ceadaa660e113a3a799b942c1e297 Cr-Commit-Position: refs/heads/master@{#313404}

Patch Set 1 #

Total comments: 3

Patch Set 2 : cleanup #

Total comments: 2

Patch Set 3 : renamed utility_content_client_, and added call to clear the UtilityClientForTesting in ~Extensions… #

Total comments: 2

Patch Set 4 : merge from trunk resolving conflicts #

Patch Set 5 : fix compile errors #

Unified diffs Side-by-side diffs Delta from patch set Stats (+324 lines, -1517 lines) Patch
M chrome/app/generated_resources.grd View 1 chunk +0 lines, -22 lines 0 comments Download
M chrome/browser/chromeos/app_mode/kiosk_app_data.cc View 1 2 3 4 2 chunks +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/app_mode/kiosk_external_update_validator.h View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/app_mode/kiosk_external_updater.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/extensions/crx_installer.h View 1 chunk +1 line, -2 lines 0 comments Download
D chrome/browser/extensions/sandboxed_unpacker.h View 1 chunk +0 lines, -246 lines 0 comments Download
D chrome/browser/extensions/sandboxed_unpacker.cc View 1 chunk +0 lines, -841 lines 0 comments Download
D chrome/browser/extensions/sandboxed_unpacker_unittest.cc View 1 chunk +0 lines, -126 lines 0 comments Download
M chrome/browser/extensions/startup_helper.cc View 3 chunks +2 lines, -2 lines 0 comments Download
M chrome/chrome_browser_extensions.gypi View 1 2 3 1 chunk +0 lines, -2 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M chrome/common/extensions/chrome_utility_extensions_messages.h View 2 chunks +0 lines, -23 lines 0 comments Download
M chrome/utility/chrome_content_utility_client.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/utility/extensions/extensions_handler.h View 1 chunk +0 lines, -4 lines 0 comments Download
M chrome/utility/extensions/extensions_handler.cc View 4 chunks +1 line, -31 lines 0 comments Download
M extensions/BUILD.gn View 1 2 3 2 chunks +3 lines, -0 lines 0 comments Download
M extensions/DEPS View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M extensions/browser/BUILD.gn View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M extensions/browser/extensions_test.h View 1 2 2 chunks +3 lines, -1 line 0 comments Download
M extensions/browser/extensions_test.cc View 1 2 3 chunks +4 lines, -0 lines 0 comments Download
A + extensions/browser/sandboxed_unpacker.h View 0 chunks +-1 lines, --1 lines 0 comments Download
A + extensions/browser/sandboxed_unpacker.cc View 34 chunks +146 lines, -195 lines 0 comments Download
A + extensions/browser/sandboxed_unpacker_unittest.cc View 7 chunks +10 lines, -16 lines 0 comments Download
M extensions/common/extension_utility_messages.h View 2 chunks +23 lines, -0 lines 0 comments Download
M extensions/extensions.gyp View 1 2 3 4 3 chunks +5 lines, -1 line 0 comments Download
M extensions/extensions_strings.grd View 1 chunk +23 lines, -0 lines 0 comments Download
M extensions/extensions_tests.gyp View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M extensions/test/extensions_unittests_main.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
A extensions/test/test_content_utility_client.h View 1 chunk +28 lines, -0 lines 0 comments Download
A extensions/test/test_content_utility_client.cc View 1 chunk +24 lines, -0 lines 0 comments Download
M extensions/utility/utility_handler.h View 2 chunks +8 lines, -0 lines 0 comments Download
M extensions/utility/utility_handler.cc View 3 chunks +30 lines, -0 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 chunk +5 lines, -0 lines 0 comments Download

Messages

Total messages: 18 (5 generated)
asargent_no_longer_on_chrome
https://codereview.chromium.org/864093002/diff/1/chrome/browser/extensions/crx_installer.h File chrome/browser/extensions/crx_installer.h (left): https://codereview.chromium.org/864093002/diff/1/chrome/browser/extensions/crx_installer.h#oldcode16 chrome/browser/extensions/crx_installer.h:16: #include "chrome/browser/extensions/blacklist.h" Removing this include is unrelated to the ...
5 years, 11 months ago (2015-01-21 21:41:56 UTC) #2
Yoyo Zhou
LGTM https://codereview.chromium.org/864093002/diff/20001/extensions/browser/extensions_test.h File extensions/browser/extensions_test.h (right): https://codereview.chromium.org/864093002/diff/20001/extensions/browser/extensions_test.h#newcode53 extensions/browser/extensions_test.h:53: scoped_ptr<content::ContentUtilityClient> utility_content_client_; content_utility_client_
5 years, 11 months ago (2015-01-22 02:06:25 UTC) #3
asargent_no_longer_on_chrome
https://codereview.chromium.org/864093002/diff/20001/extensions/browser/extensions_test.h File extensions/browser/extensions_test.h (right): https://codereview.chromium.org/864093002/diff/20001/extensions/browser/extensions_test.h#newcode53 extensions/browser/extensions_test.h:53: scoped_ptr<content::ContentUtilityClient> utility_content_client_; On 2015/01/22 02:06:25, Yoyo Zhou wrote: > ...
5 years, 11 months ago (2015-01-22 23:02:50 UTC) #4
asargent_no_longer_on_chrome
Reviewers, please look at the following: sky : chrome/utility/chrome_content_utility_client.cc jschuh : (mechanical move of IPC ...
5 years, 11 months ago (2015-01-22 23:10:28 UTC) #6
Ilya Sherman
histograms lgtm % nits: https://codereview.chromium.org/864093002/diff/40001/tools/metrics/histograms/histograms.xml File tools/metrics/histograms/histograms.xml (right): https://codereview.chromium.org/864093002/diff/40001/tools/metrics/histograms/histograms.xml#newcode8975 tools/metrics/histograms/histograms.xml:8975: +<histogram name="Extensions.SandboxUnpackSuccessCrxSize"> nit: Please add ...
5 years, 11 months ago (2015-01-22 23:15:36 UTC) #7
jschuh
ipc security lgtm (notes: mechanical change)
5 years, 11 months ago (2015-01-22 23:31:40 UTC) #8
sky
chrome/utility/chrome_content_utility_client.cc LGTM
5 years, 11 months ago (2015-01-23 00:41:42 UTC) #9
asargent_no_longer_on_chrome
+cc dpolukhin as TBR for changes in chrome/browser/chromeos/app_mode/kiosk_external_update_validator.h chrome/browser/chromeos/app_mode/kiosk_external_updater.cc where I'm just updating #include paths
5 years, 11 months ago (2015-01-27 21:10:57 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/864093002/60001
5 years, 11 months ago (2015-01-27 21:12:34 UTC) #12
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/18840) linux_chromium_compile_dbg_32_ng on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_compile_dbg_32_ng/builds/17803) linux_chromium_gn_chromeos_rel ...
5 years, 11 months ago (2015-01-27 21:31:10 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/864093002/80001
5 years, 11 months ago (2015-01-27 22:44:45 UTC) #16
commit-bot: I haz the power
Committed patchset #5 (id:80001)
5 years, 11 months ago (2015-01-27 23:44:00 UTC) #17
commit-bot: I haz the power
5 years, 11 months ago (2015-01-27 23:45:16 UTC) #18
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/275faaaa9d7ceadaa660e113a3a799b942c1e297
Cr-Commit-Position: refs/heads/master@{#313404}

Powered by Google App Engine
This is Rietveld 408576698