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

Issue 18578008: [SystemInfo API] Move Storage API out of experimental namespace and rename to the "system" namespace (Closed)

Created:
7 years, 5 months ago by Haojian Wu
Modified:
7 years, 4 months ago
CC:
chromium-reviews, extensions-reviews_chromium.org, felt, jar (doing other things), asvitkine+watch_chromium.org, chromium-apps-reviews_chromium.org, Ilya Sherman
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

[SystemInfo API] Move Storage API out of experimental namespace and rename to the "system" namespace. experimental.systemInfo.storage.get ---> system.storage.getInfo experimental.systemInfo.storage.onAttached ---> system.storage.onAttached experimental.systemInfo.storage.onDetached ---> system.storage.onDetached experimental.systemInfo.ejectDevice/mediaGalleriesPrivate.ejectDevice ---> system.storage.ejectDevice experimental.systemInfo.storage.addWatch ---> system.storage.addAvailableCapacityWatch (! dev availability only) experimental.systemInfo.storage.removeWatch ---> system.storage.removeAvailableCapacityWatch (! dev availability only) experimental.systemInfo.storage.getAllWatch ---> system.storage.getAllAvailableCapacityWatches (! dev availability only) experimental.systemInfo.storage.removeAllWatch ---> system.storage.removeAllAvailableCapacityWatches (! dev availability only) experimental.systemInfo.storage.onAvailableCapacityChanged ---> system.storage.onAvailableCapacityChanged (! dev availability only) BUG=252994 TEST=browser_tests --gtest_filter=SystemStorageApiTest.* TEST=unit_tests --gtest_filter=StorageInfoProviderTest.* Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=213857

Patch Set 1 #

Total comments: 14

Patch Set 2 : Fix hongbo's comments. #

Patch Set 3 : Rebase #

Total comments: 1

Patch Set 4 : Rename to the "system" namespace. #

Total comments: 21

Patch Set 5 : Address kalman comments and change storage.get to storage.getInfo. #

Total comments: 2

Patch Set 6 : Only focus on Rename. #

Patch Set 7 : Little Fix #

Patch Set 8 : Rebase #

Patch Set 9 : Update #

Patch Set 10 : Fix comment nits. #

Patch Set 11 : #

Total comments: 17

Patch Set 12 : Remove duplicated files. #

Patch Set 13 : #

Patch Set 14 : #

Patch Set 15 : #

Patch Set 16 : New diff log. #

Patch Set 17 : Reset #

Patch Set 18 : Recover #

Patch Set 19 : Reset all deleted files. #

Patch Set 20 : New diff track. #

Patch Set 21 : Fix PermissionTest unittest. #

Total comments: 3
Unified diffs Side-by-side diffs Delta from patch set Stats (+282 lines, -1843 lines) Patch
M chrome/browser/extensions/activity_log/api_name_constants.h View 1 2 3 4 5 6 7 1 chunk +10 lines, -1 line 0 comments Download
M chrome/browser/extensions/api/system_info/system_info_api.cc View 1 2 3 4 5 2 chunks +5 lines, -5 lines 0 comments Download
D chrome/browser/extensions/api/system_info_storage/OWNERS View 1 2 3 19 1 chunk +0 lines, -3 lines 0 comments Download
D chrome/browser/extensions/api/system_info_storage/storage_free_space_observer.h View 1 2 3 19 1 chunk +0 lines, -28 lines 0 comments Download
M chrome/browser/extensions/api/system_info_storage/storage_info_provider.h View 1 2 3 19 1 chunk +0 lines, -132 lines 0 comments Download
D chrome/browser/extensions/api/system_info_storage/storage_info_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 19 1 chunk +0 lines, -270 lines 0 comments Download
D chrome/browser/extensions/api/system_info_storage/storage_info_provider_unittest.cc View 1 2 3 4 19 1 chunk +0 lines, -272 lines 0 comments Download
M chrome/browser/extensions/api/system_info_storage/system_info_storage_api.h View 1 2 3 19 1 chunk +0 lines, -93 lines 0 comments Download
M chrome/browser/extensions/api/system_info_storage/system_info_storage_api.cc View 1 2 3 19 1 chunk +0 lines, -144 lines 0 comments Download
D chrome/browser/extensions/api/system_info_storage/system_info_storage_apitest.cc View 1 2 3 4 5 6 7 8 9 10 11 19 1 chunk +0 lines, -107 lines 0 comments Download
D chrome/browser/extensions/api/system_info_storage/system_info_storage_eject_apitest.cc View 1 2 3 4 19 1 chunk +0 lines, -124 lines 0 comments Download
D chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.h View 1 2 3 19 1 chunk +0 lines, -61 lines 0 comments Download
M chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.cc View 1 2 3 19 1 chunk +0 lines, -97 lines 0 comments Download
A + chrome/browser/extensions/api/system_storage/OWNERS View 1 2 3 19 0 chunks +-1 lines, --1 lines 0 comments Download
A + chrome/browser/extensions/api/system_storage/storage_free_space_observer.h View 1 2 3 19 2 chunks +3 lines, -3 lines 0 comments Download
A + chrome/browser/extensions/api/system_storage/storage_info_provider.h View 1 2 3 19 5 chunks +8 lines, -7 lines 0 comments Download
A + chrome/browser/extensions/api/system_storage/storage_info_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 19 2 chunks +4 lines, -4 lines 0 comments Download
A + chrome/browser/extensions/api/system_storage/storage_info_provider_unittest.cc View 1 2 3 4 19 2 chunks +5 lines, -5 lines 0 comments Download
A + chrome/browser/extensions/api/system_storage/system_storage_api.h View 1 2 3 4 19 3 chunks +36 lines, -33 lines 0 comments Download
A + chrome/browser/extensions/api/system_storage/system_storage_api.cc View 1 2 3 4 5 6 7 8 9 10 11 19 3 chunks +48 lines, -45 lines 0 comments Download
A + chrome/browser/extensions/api/system_storage/system_storage_apitest.cc View 1 2 3 4 5 6 7 8 9 10 11 19 5 chunks +11 lines, -11 lines 0 comments Download
A + chrome/browser/extensions/api/system_storage/system_storage_eject_apitest.cc View 1 2 3 4 19 5 chunks +10 lines, -10 lines 0 comments Download
A + chrome/browser/extensions/api/system_storage/test_storage_info_provider.h View 1 2 3 19 2 chunks +4 lines, -4 lines 0 comments Download
A + chrome/browser/extensions/api/system_storage/test_storage_info_provider.cc View 1 2 3 19 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/extensions/event_names.cc View 1 2 3 4 5 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/extensions/extension_function_histogram_value.h View 1 2 3 4 5 6 7 3 chunks +12 lines, -6 lines 0 comments Download
M chrome/browser/storage_monitor/storage_monitor.h View 1 2 3 4 5 2 chunks +4 lines, -4 lines 0 comments Download
M chrome/chrome_browser_extensions.gypi View 1 2 3 4 5 6 7 3 chunks +11 lines, -11 lines 0 comments Download
M chrome/chrome_tests.gypi View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 5 6 7 2 chunks +3 lines, -3 lines 0 comments Download
M chrome/common/extensions/api/_api_features.json View 1 2 3 4 5 6 7 2 chunks +19 lines, -4 lines 0 comments Download
M chrome/common/extensions/api/_permission_features.json View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +6 lines, -0 lines 3 comments Download
M chrome/common/extensions/api/api.gyp View 1 2 3 4 5 6 7 2 chunks +1 line, -1 line 0 comments Download
D chrome/common/extensions/api/experimental_system_info_storage.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +0 lines, -103 lines 0 comments Download
A + chrome/common/extensions/api/system_storage.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +35 lines, -30 lines 0 comments Download
D chrome/common/extensions/docs/templates/public/apps/experimental_systemInfo_storage.html View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M chrome/common/extensions/docs/templates/public/apps/redirects.json View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -1 line 0 comments Download
A chrome/common/extensions/docs/templates/public/apps/system_storage.html View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
D chrome/common/extensions/docs/templates/public/extensions/experimental_systemInfo_storage.html View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M chrome/common/extensions/docs/templates/public/extensions/redirects.json View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
A chrome/common/extensions/docs/templates/public/extensions/system_storage.html View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M chrome/common/extensions/permissions/api_permission.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M chrome/common/extensions/permissions/chrome_api_permissions.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M chrome/common/extensions/permissions/permission_set_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +2 lines, -1 line 0 comments Download
A + chrome/test/data/extensions/api_test/system/storage/manifest.json View 1 2 3 19 1 chunk +2 lines, -2 lines 0 comments Download
A + chrome/test/data/extensions/api_test/system/storage/test_storage_api.html View 1 2 3 19 0 chunks +-1 lines, --1 lines 0 comments Download
A + chrome/test/data/extensions/api_test/system/storage/test_storage_api.js View 1 2 3 4 5 6 7 8 9 10 11 19 4 chunks +11 lines, -11 lines 0 comments Download
A + chrome/test/data/extensions/api_test/system/storage_attachment/manifest.json View 1 2 3 4 19 1 chunk +2 lines, -2 lines 0 comments Download
A + chrome/test/data/extensions/api_test/system/storage_attachment/test_storage_api.js View 1 2 3 4 5 6 7 8 9 10 11 19 3 chunks +5 lines, -6 lines 0 comments Download
A + chrome/test/data/extensions/api_test/system/storage_eject/manifest.json View 1 2 3 17 1 chunk +2 lines, -2 lines 0 comments Download
A + chrome/test/data/extensions/api_test/system/storage_eject/test.js View 1 2 3 17 2 chunks +4 lines, -6 lines 0 comments Download
M chrome/test/data/extensions/api_test/systeminfo/storage/manifest.json View 1 2 3 19 1 chunk +0 lines, -12 lines 0 comments Download
D chrome/test/data/extensions/api_test/systeminfo/storage/test_storage_api.html View 1 2 3 19 1 chunk +0 lines, -3 lines 0 comments Download
D chrome/test/data/extensions/api_test/systeminfo/storage/test_storage_api.js View 1 2 3 4 5 6 7 8 9 10 11 19 1 chunk +0 lines, -58 lines 0 comments Download
M chrome/test/data/extensions/api_test/systeminfo/storage_attachment/manifest.json View 1 2 3 19 1 chunk +0 lines, -12 lines 0 comments Download
D chrome/test/data/extensions/api_test/systeminfo/storage_attachment/test_storage_api.js View 1 2 3 4 5 6 7 8 9 10 11 19 1 chunk +0 lines, -44 lines 0 comments Download
D chrome/test/data/extensions/api_test/systeminfo/storage_eject/manifest.json View 1 2 3 17 1 chunk +0 lines, -12 lines 0 comments Download
D chrome/test/data/extensions/api_test/systeminfo/storage_eject/test.js View 1 2 3 17 1 chunk +0 lines, -42 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 2 3 4 5 6 7 1 chunk +6 lines, -0 lines 0 comments Download

Messages

Total messages: 43 (0 generated)
Haojian Wu
hongbo@ for initial review. Ilya@ for histograms.xml. Greg@, Jeffrey@ for extension api.
7 years, 5 months ago (2013-07-08 05:29:06 UTC) #1
Hongbo Min
Good progress! https://codereview.chromium.org/18578008/diff/1/chrome/common/extensions/api/experimental_system_info_storage.idl File chrome/common/extensions/api/experimental_system_info_storage.idl (left): https://codereview.chromium.org/18578008/diff/1/chrome/common/extensions/api/experimental_system_info_storage.idl#oldcode9 chrome/common/extensions/api/experimental_system_info_storage.idl:9: enum StorageUnitType { nit: Now we can ...
7 years, 5 months ago (2013-07-08 06:52:43 UTC) #2
Haojian Wu
https://codereview.chromium.org/18578008/diff/1/chrome/common/extensions/api/experimental_system_info_storage.idl File chrome/common/extensions/api/experimental_system_info_storage.idl (left): https://codereview.chromium.org/18578008/diff/1/chrome/common/extensions/api/experimental_system_info_storage.idl#oldcode9 chrome/common/extensions/api/experimental_system_info_storage.idl:9: enum StorageUnitType { On 2013/07/08 06:52:43, Hongbo Min wrote: ...
7 years, 5 months ago (2013-07-08 07:46:30 UTC) #3
Hongbo Min
LGTM. ping gbillock@
7 years, 5 months ago (2013-07-08 07:50:27 UTC) #4
Greg Billock
On 2013/07/08 07:50:27, Hongbo Min wrote: > LGTM. ping gbillock@ Let's wait on moving it ...
7 years, 5 months ago (2013-07-08 17:24:47 UTC) #5
Ilya Sherman
LGTM
7 years, 5 months ago (2013-07-08 22:14:15 UTC) #6
Haojian Wu
On 2013/07/08 17:24:47, Greg Billock wrote: > On 2013/07/08 07:50:27, Hongbo Min wrote: > > ...
7 years, 5 months ago (2013-07-08 23:11:57 UTC) #7
Haojian Wu
On 2013/07/08 23:11:57, Haojian Wu wrote: > On 2013/07/08 17:24:47, Greg Billock wrote: > > ...
7 years, 5 months ago (2013-07-15 05:18:31 UTC) #8
Greg Billock
On 2013/07/15 05:18:31, Haojian Wu wrote: > On 2013/07/08 23:11:57, Haojian Wu wrote: > > ...
7 years, 5 months ago (2013-07-15 17:40:44 UTC) #9
Greg Billock
https://codereview.chromium.org/18578008/diff/24001/chrome/common/extensions/api/system_info_storage.idl File chrome/common/extensions/api/system_info_storage.idl (right): https://codereview.chromium.org/18578008/diff/24001/chrome/common/extensions/api/system_info_storage.idl#newcode1 chrome/common/extensions/api/system_info_storage.idl:1: // Copyright (c) 2012 The Chromium Authors. All rights ...
7 years, 5 months ago (2013-07-16 17:54:40 UTC) #10
Haojian Wu
The patch has been updated. Also rename to the new "system" namespace. Please have a ...
7 years, 5 months ago (2013-07-18 08:51:20 UTC) #11
Hongbo Min
https://codereview.chromium.org/18578008/diff/31001/chrome/common/extensions/api/_permission_features.json File chrome/common/extensions/api/_permission_features.json (right): https://codereview.chromium.org/18578008/diff/31001/chrome/common/extensions/api/_permission_features.json#newcode577 chrome/common/extensions/api/_permission_features.json:577: }, On 2013/07/18 08:51:20, Haojian Wu wrote: > I'm ...
7 years, 5 months ago (2013-07-18 09:56:43 UTC) #12
Haojian Wu
https://codereview.chromium.org/18578008/diff/31001/chrome/common/extensions/api/_permission_features.json File chrome/common/extensions/api/_permission_features.json (right): https://codereview.chromium.org/18578008/diff/31001/chrome/common/extensions/api/_permission_features.json#newcode577 chrome/common/extensions/api/_permission_features.json:577: }, On 2013/07/18 09:56:43, Hongbo Min wrote: > On ...
7 years, 5 months ago (2013-07-18 10:44:29 UTC) #13
方觉(Fang Jue)
https://codereview.chromium.org/18578008/diff/31001/chrome/common/extensions/api/_permission_features.json File chrome/common/extensions/api/_permission_features.json (right): https://codereview.chromium.org/18578008/diff/31001/chrome/common/extensions/api/_permission_features.json#newcode577 chrome/common/extensions/api/_permission_features.json:577: }, On 2013/07/18 08:51:20, Haojian Wu wrote: > I'm ...
7 years, 5 months ago (2013-07-18 11:44:30 UTC) #14
Haojian Wu
https://codereview.chromium.org/18578008/diff/31001/chrome/common/extensions/api/_permission_features.json File chrome/common/extensions/api/_permission_features.json (right): https://codereview.chromium.org/18578008/diff/31001/chrome/common/extensions/api/_permission_features.json#newcode577 chrome/common/extensions/api/_permission_features.json:577: }, On 2013/07/18 11:44:30, 方觉(Fang Jue) wrote: > On ...
7 years, 5 months ago (2013-07-18 15:43:30 UTC) #15
not at google - send to devlin
https://codereview.chromium.org/18578008/diff/31001/chrome/browser/extensions/api/system_info/system_info_api.cc File chrome/browser/extensions/api/system_info/system_info_api.cc (right): https://codereview.chromium.org/18578008/diff/31001/chrome/browser/extensions/api/system_info/system_info_api.cc#newcode219 chrome/browser/extensions/api/system_info/system_info_api.cc:219: DispatchStorageAttachedEvent(info); it looks like this patch is more than ...
7 years, 5 months ago (2013-07-18 17:06:17 UTC) #16
Haojian Wu
https://codereview.chromium.org/18578008/diff/31001/chrome/browser/extensions/api/system_info/system_info_api.cc File chrome/browser/extensions/api/system_info/system_info_api.cc (right): https://codereview.chromium.org/18578008/diff/31001/chrome/browser/extensions/api/system_info/system_info_api.cc#newcode219 chrome/browser/extensions/api/system_info/system_info_api.cc:219: DispatchStorageAttachedEvent(info); On 2013/07/18 17:06:18, kalman wrote: > it looks ...
7 years, 5 months ago (2013-07-19 08:47:12 UTC) #17
Haojian Wu
On 2013/07/19 08:47:12, Haojian Wu wrote: > https://codereview.chromium.org/18578008/diff/31001/chrome/browser/extensions/api/system_info/system_info_api.cc > File chrome/browser/extensions/api/system_info/system_info_api.cc (right): > > https://codereview.chromium.org/18578008/diff/31001/chrome/browser/extensions/api/system_info/system_info_api.cc#newcode219 ...
7 years, 5 months ago (2013-07-22 15:31:39 UTC) #18
not at google - send to devlin
https://codereview.chromium.org/18578008/diff/31001/chrome/browser/extensions/api/system_info/system_info_api.cc File chrome/browser/extensions/api/system_info/system_info_api.cc (right): https://codereview.chromium.org/18578008/diff/31001/chrome/browser/extensions/api/system_info/system_info_api.cc#newcode219 chrome/browser/extensions/api/system_info/system_info_api.cc:219: DispatchStorageAttachedEvent(info); On 2013/07/19 08:47:12, Haojian Wu wrote: > On ...
7 years, 5 months ago (2013-07-22 15:55:57 UTC) #19
Haojian Wu
On 2013/07/22 15:55:57, kalman wrote: > https://codereview.chromium.org/18578008/diff/31001/chrome/browser/extensions/api/system_info/system_info_api.cc > File chrome/browser/extensions/api/system_info/system_info_api.cc (right): > > https://codereview.chromium.org/18578008/diff/31001/chrome/browser/extensions/api/system_info/system_info_api.cc#newcode219 > ...
7 years, 5 months ago (2013-07-23 03:20:20 UTC) #20
Haojian Wu
https://codereview.chromium.org/18578008/diff/45001/chrome/common/extensions/api/_api_features.json File chrome/common/extensions/api/_api_features.json (right): https://codereview.chromium.org/18578008/diff/45001/chrome/common/extensions/api/_api_features.json#newcode474 chrome/common/extensions/api/_api_features.json:474: "contexts": ["blessed_extension"] On 2013/07/22 15:55:57, kalman wrote: > these ...
7 years, 5 months ago (2013-07-23 13:37:24 UTC) #21
Hongbo Min
Haojian, please have a look at https://codereview.chromium.org/19532006/, it conflicts this change, please rebase this CL.
7 years, 5 months ago (2013-07-24 00:19:15 UTC) #22
Haojian Wu
On 2013/07/24 00:19:15, Hongbo Min wrote: > Haojian, please have a look at https://codereview.chromium.org/19532006/, it ...
7 years, 5 months ago (2013-07-24 01:04:56 UTC) #23
Haojian Wu
On 2013/07/24 00:19:15, Hongbo Min wrote: > Haojian, please have a look at https://codereview.chromium.org/19532006/, it ...
7 years, 5 months ago (2013-07-24 01:05:18 UTC) #24
Haojian Wu
On 2013/07/24 01:05:18, Haojian Wu wrote: > On 2013/07/24 00:19:15, Hongbo Min wrote: > > ...
7 years, 5 months ago (2013-07-24 15:39:11 UTC) #25
not at google - send to devlin
https://codereview.chromium.org/18578008/diff/68001/chrome/browser/extensions/api/system_info/system_info_api.cc File chrome/browser/extensions/api/system_info/system_info_api.cc (right): https://codereview.chromium.org/18578008/diff/68001/chrome/browser/extensions/api/system_info/system_info_api.cc#newcode1 chrome/browser/extensions/api/system_info/system_info_api.cc:1: // Copyright 2013 The Chromium Authors. All rights reserved. ...
7 years, 5 months ago (2013-07-24 16:01:47 UTC) #26
Haojian Wu
https://codereview.chromium.org/18578008/diff/68001/chrome/browser/extensions/api/system_info/system_info_api.cc File chrome/browser/extensions/api/system_info/system_info_api.cc (right): https://codereview.chromium.org/18578008/diff/68001/chrome/browser/extensions/api/system_info/system_info_api.cc#newcode1 chrome/browser/extensions/api/system_info/system_info_api.cc:1: // Copyright 2013 The Chromium Authors. All rights reserved. ...
7 years, 4 months ago (2013-07-25 04:21:57 UTC) #27
Hongbo Min
https://codereview.chromium.org/18578008/diff/68001/chrome/browser/extensions/api/system_info_storage/storage_info_provider.h File chrome/browser/extensions/api/system_info_storage/storage_info_provider.h (left): https://codereview.chromium.org/18578008/diff/68001/chrome/browser/extensions/api/system_info_storage/storage_info_provider.h#oldcode1 chrome/browser/extensions/api/system_info_storage/storage_info_provider.h:1: // Copyright (c) 2012 The Chromium Authors. All rights ...
7 years, 4 months ago (2013-07-25 04:48:18 UTC) #28
not at google - send to devlin
lgtm, see how the CQ likes this patch. if it doesn't you can try uploading ...
7 years, 4 months ago (2013-07-25 14:35:51 UTC) #29
Haojian Wu
On 2013/07/25 14:35:51, kalman wrote: > lgtm, see how the CQ likes this patch. if ...
7 years, 4 months ago (2013-07-25 15:33:45 UTC) #30
Haojian Wu
https://codereview.chromium.org/18578008/diff/68001/chrome/common/extensions/api/system_storage.idl File chrome/common/extensions/api/system_storage.idl (right): https://codereview.chromium.org/18578008/diff/68001/chrome/common/extensions/api/system_storage.idl#newcode80 chrome/common/extensions/api/system_storage.idl:80: static void addAvailableCapacityWatch( On 2013/07/25 14:35:51, kalman wrote: > ...
7 years, 4 months ago (2013-07-25 15:36:55 UTC) #31
not at google - send to devlin
On 2013/07/25 15:33:45, Haojian Wu wrote: > On 2013/07/25 14:35:51, kalman wrote: > > lgtm, ...
7 years, 4 months ago (2013-07-25 15:51:07 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/Hokein.Wu@gmail.com/18578008/89002
7 years, 4 months ago (2013-07-26 03:45:27 UTC) #33
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=17271
7 years, 4 months ago (2013-07-26 06:37:54 UTC) #34
Haojian Wu
On 2013/07/26 06:37:54, I haz the power (commit-bot) wrote: > Retried try job too often ...
7 years, 4 months ago (2013-07-26 07:06:13 UTC) #35
Lei Zhang
c/b/storage_monitor lgtm
7 years, 4 months ago (2013-07-26 07:13:02 UTC) #36
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/Hokein.Wu@gmail.com/18578008/89002
7 years, 4 months ago (2013-07-26 07:22:19 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/Hokein.Wu@gmail.com/18578008/135002
7 years, 4 months ago (2013-07-26 09:14:31 UTC) #38
commit-bot: I haz the power
Change committed as 213857
7 years, 4 months ago (2013-07-26 12:19:16 UTC) #39
Haojian Wu
https://chromiumcodereview.appspot.com/18578008/diff/135002/chrome/common/extensions/api/_permission_features.json File chrome/common/extensions/api/_permission_features.json (right): https://chromiumcodereview.appspot.com/18578008/diff/135002/chrome/common/extensions/api/_permission_features.json#newcode533 chrome/common/extensions/api/_permission_features.json:533: "whitelist": [""] Should we remove the "whitelist" restriction of ...
7 years, 4 months ago (2013-07-29 07:26:35 UTC) #40
not at google - send to devlin
https://chromiumcodereview.appspot.com/18578008/diff/135002/chrome/common/extensions/api/_permission_features.json File chrome/common/extensions/api/_permission_features.json (right): https://chromiumcodereview.appspot.com/18578008/diff/135002/chrome/common/extensions/api/_permission_features.json#newcode533 chrome/common/extensions/api/_permission_features.json:533: "whitelist": [""] On 2013/07/29 07:26:36, Haojian Wu wrote: > ...
7 years, 4 months ago (2013-07-29 14:51:52 UTC) #41
not at google - send to devlin
as in rather than just not having a whitelist and restricting it to dev channel. ...
7 years, 4 months ago (2013-07-29 14:52:28 UTC) #42
Haojian Wu
7 years, 4 months ago (2013-07-30 02:10:46 UTC) #43
Message was sent while issue was closed.
https://chromiumcodereview.appspot.com/18578008/diff/135002/chrome/common/ext...
File chrome/common/extensions/api/_permission_features.json (right):

https://chromiumcodereview.appspot.com/18578008/diff/135002/chrome/common/ext...
chrome/common/extensions/api/_permission_features.json:533: "whitelist": [""]
On 2013/07/29 14:51:52, kalman wrote:
> On 2013/07/29 07:26:36, Haojian Wu wrote:
> > Should we remove the "whitelist" restriction of system.cpu and system.memory
> > here? 
> > 
> > Now extensions/web apps using these APIs should be included in whitelist(run
> > through ./chrome.exe --whitelisted-extension-id=XX), otherwise these APIs
are
> > not available. 
> 
> Why do we bother supporting this...?

I just keep the cpu/memory API unchanged here.
see
(https://codereview.chromium.org/16256023/diff/24001/chrome/common/extensions/...,
and
https://codereview.chromium.org/15817008/diff/27001/chrome/common/extensions/...)
these two patches add "whitelist" restrictions.

Powered by Google App Engine
This is Rietveld 408576698