summaryrefslogtreecommitdiffstats
path: root/components/crx_file
Commit message (Collapse)AuthorAgeFilesLines
* Switch to standard integer types in components/, part 1 of 4.avi2015-12-256-25/+34
| | | | | | | | | BUG=138542 TBR=blundell@chromium.org Review URL: https://codereview.chromium.org/1546143002 Cr-Commit-Position: refs/heads/master@{#366873}
* [Extensions] Remove kalman@ from OWNERS filesrdevlin.cronin2015-10-261-1/+0
| | | | | | | | BUG=484381 Review URL: https://codereview.chromium.org/1417313004 Cr-Commit-Position: refs/heads/master@{#356106}
* Replace ToLower calls to the new formatbrettw2015-08-102-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replaces base::StringToLowerASCII(string) with base::ToLowerASCII(string) This form is 1:1 search and replace. A bunch of places did something like this: std::string foo(something_else); base::StringToLowerASCII(&foo); which became: foo = base::ToLowerASCII(something_else); A couple places really wanted in-place changing and they became: foo = base::ToLowerASCII(foo); There was pretty trivial cleanup in chrome_main_delegate.cc chrome/test/chromedriver/server/http_handler.cc (fix indenting). There was more cleanup in: chrome/installer/util/language_selector.cc and components/plugins/renderer/mobile_youtube_plugin.cc In components/history/core/browser/url_utils.cc I removed the call since it was calling ToLower on the host name out of a GURL, which is already guaranteed to be lower-case. NOPRESUBMIT=true (due to touching code with wstrings) Review URL: https://codereview.chromium.org/1279123004 Cr-Commit-Position: refs/heads/master@{#342659}
* Move ValidateSignature logic for crx files to the CrxFile classasargent2015-07-272-3/+181
| | | | | | | | | | | | We were using the same logic with two different implementations in both extensions/ and components/update_client, so this lets us share the same code. BUG=490418 Review URL: https://codereview.chromium.org/1235593007 Cr-Commit-Position: refs/heads/master@{#340566}
* Remove yoz@chromium.org from OWNERS and histograms.xml.kalman2015-04-141-1/+0
| | | | | | | | | | He is no longer on the team. R=rdevlin.cronin@chromium.org,mpearson@chromium.org,jhawkins@chromium.org Review URL: https://codereview.chromium.org/1079973006 Cr-Commit-Position: refs/heads/master@{#325099}
* Add OWNERS for crx_file component.yoz2015-01-291-0/+4
| | | | | | Review URL: https://codereview.chromium.org/889663004 Cr-Commit-Position: refs/heads/master@{#313822}
* Extensions: Consolidate extension id hashing / searching.thestig2015-01-292-2/+12
| | | | | | Review URL: https://codereview.chromium.org/850853002 Cr-Commit-Position: refs/heads/master@{#313747}
* Add more components unittests to the GN build.brettw2014-11-261-0/+2
| | | | | | | | Add lots of missing dependencies identified by "gn check" in both the GN and GYP builds. Review URL: https://codereview.chromium.org/756233002 Cr-Commit-Position: refs/heads/master@{#305841}
* Mark gtest and gmock as testonly in GN.Brett Wilson2014-09-081-0/+1
| | | | | | | | | | | This updates the targets that depend on these to also be test-only. BUG=http://crbug.com/412064 R=jamesr@chromium.org, tfarina@chromium.org Review URL: https://codereview.chromium.org/551933002 Cr-Commit-Position: refs/heads/master@{#293808}
* Extensions: Move id_util functions to crx_file component.tommycli@chromium.org2014-08-215-0/+187
| | | | | | | | | | | | | | Consolidates id_util functions of extension/app/component ids in the crx_file component. It belongs there because these types of ids are not exclusive to extensions, but rather, for anything that comes in a crx file. BUG=371463 TBR=blundell@chromium.org Review URL: https://codereview.chromium.org/481433005 Cr-Commit-Position: refs/heads/master@{#290971} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290971 0039d316-1c4b-4281-b951-d872f2087c98
* components: Update GN build files for crx_file.tommycli@chromium.org2014-08-191-0/+15
| | | | | | | | | | | | This adds BUILD.gn files for crx_file component. This was overlooked when I originally created the crx_file component. BUG=371463 TBR=blundell@chromium.org Review URL: https://codereview.chromium.org/483683004 Cr-Commit-Position: refs/heads/master@{#290455} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290455 0039d316-1c4b-4281-b951-d872f2087c98
* Componentize component_updater: Split crx_file code off into its own component.tommycli@chromium.org2014-08-153-0/+181
CRX file code currently lives under extensions/. However, component_updater also uses them to package components. The CRX code should therefore live as its own component. BUG=371463 TBR=blundell@chromium.org Review URL: https://codereview.chromium.org/474633005 Cr-Commit-Position: refs/heads/master@{#289966} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289966 0039d316-1c4b-4281-b951-d872f2087c98