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

Issue 11571014: Lazy load chrome.* APIs (Closed)

Created:
8 years ago by cduvall
Modified:
7 years, 9 months ago
CC:
chromium-reviews, Aaron Boodman, darin-cc_chromium.org, chromium-apps-reviews_chromium.org, Matt Perry
Visibility:
Public.

Description

Set up V8 bindings for extension/app APIs when they're first used, not on context creation. This should gives us a significant reduction in extension/app startup time and slightly better memory usage. It also gives us better error messages, the chance to complete the implementation of API features, and eventually the ability to expose select extension APIs (e.g. extension.sendMessage) to web pages. Resubmitting: changes made to resubmit this patch reviewed in: https://codereview.chromium.org/12378077/ BUG=163678, 120070, 55316, 177163 TBR=ben@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=186643 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=187143

Patch Set 1 #

Total comments: 12

Patch Set 2 : . #

Total comments: 14

Patch Set 3 : SetNativeLazyField #

Patch Set 4 : refactor js #

Patch Set 5 : . #

Patch Set 6 : more progress #

Total comments: 33

Patch Set 7 : comments/TODOs #

Total comments: 24

Patch Set 8 : getting closer #

Patch Set 9 : apitest.js #

Total comments: 58

Patch Set 10 : latest changes #

Patch Set 11 : addressed comments #

Total comments: 32

Patch Set 12 : more fixes #

Total comments: 12

Patch Set 13 : fixes #

Total comments: 2

Patch Set 14 : fix to unit tests and merge #

Patch Set 15 : fix interactive_ui_tests #

Total comments: 6

Patch Set 16 : patch in context fixes #

Patch Set 17 : fix chromeos compile error #

Patch Set 18 : fixes to browser_test failures #

Patch Set 19 : fixed more browser_tests #

Patch Set 20 : fix chromeos browser_tests #

Patch Set 21 : windows interactive_ui_tests fix #

Total comments: 2

Patch Set 22 : remove first check #

Patch Set 23 : rebase #

Patch Set 24 : merge master #

Patch Set 25 : fix webview #

Patch Set 26 : try again #

Patch Set 27 : argh #

Patch Set 28 : please please #

Patch Set 29 : phew #

Patch Set 30 : switch to module contxet #

Patch Set 31 : rebase #

Patch Set 32 : fix some more problems #

Patch Set 33 : fix perf problems #

Patch Set 34 : android compilation #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2301 lines, -1630 lines) Patch
M chrome/browser/autocomplete/autocomplete_match.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -1 line 0 comments Download
M chrome/chrome_renderer.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 5 chunks +9 lines, -3 lines 0 comments Download
M chrome/common/extensions/api/extension_api.h View 1 2 3 2 chunks +5 lines, -2 lines 0 comments Download
M chrome/common/extensions/api/extension_api.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 2 chunks +15 lines, -4 lines 0 comments Download
M chrome/common/extensions/api/extension_api_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +23 lines, -26 lines 0 comments Download
M chrome/common/extensions/api/test.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +199 lines, -0 lines 0 comments Download
M chrome/common/extensions/features/feature.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +5 lines, -0 lines 0 comments Download
M chrome/common/extensions/features/feature.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/renderer/extensions/api_definitions_natives.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +5 lines, -1 line 0 comments Download
M chrome/renderer/extensions/api_definitions_natives.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +5 lines, -6 lines 0 comments Download
M chrome/renderer/extensions/app_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -2 lines 0 comments Download
M chrome/renderer/extensions/app_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +2 lines, -3 lines 0 comments Download
M chrome/renderer/extensions/app_runtime_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +2 lines, -1 line 0 comments Download
M chrome/renderer/extensions/app_runtime_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/renderer/extensions/app_window_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +2 lines, -1 line 0 comments Download
M chrome/renderer/extensions/app_window_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 2 chunks +4 lines, -3 lines 0 comments Download
A chrome/renderer/extensions/binding_generating_native_handler.h View 1 2 3 4 5 6 7 8 9 1 chunk +38 lines, -0 lines 0 comments Download
A chrome/renderer/extensions/binding_generating_native_handler.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +39 lines, -0 lines 0 comments Download
M chrome/renderer/extensions/chrome_v8_context.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 4 chunks +8 lines, -4 lines 0 comments Download
M chrome/renderer/extensions/chrome_v8_context.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 7 chunks +40 lines, -11 lines 0 comments Download
M chrome/renderer/extensions/chrome_v8_context_set.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -1 line 0 comments Download
M chrome/renderer/extensions/chrome_v8_extension.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 3 chunks +14 lines, -18 lines 0 comments Download
M chrome/renderer/extensions/chrome_v8_extension.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +13 lines, -46 lines 0 comments Download
M chrome/renderer/extensions/content_watcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +1 line, -1 line 0 comments Download
M chrome/renderer/extensions/content_watcher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 3 chunks +8 lines, -5 lines 0 comments Download
M chrome/renderer/extensions/context_menus_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +2 lines, -1 line 0 comments Download
M chrome/renderer/extensions/context_menus_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/renderer/extensions/dispatcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 3 chunks +10 lines, -2 lines 0 comments Download
M chrome/renderer/extensions/dispatcher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 22 chunks +237 lines, -93 lines 0 comments Download
M chrome/renderer/extensions/event_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +3 lines, -4 lines 0 comments Download
M chrome/renderer/extensions/event_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 12 chunks +23 lines, -19 lines 0 comments Download
M chrome/renderer/extensions/event_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 12 chunks +36 lines, -22 lines 0 comments Download
M chrome/renderer/extensions/extension_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +2 lines, -1 line 0 comments Download
M chrome/renderer/extensions/extension_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +5 lines, -3 lines 0 comments Download
M chrome/renderer/extensions/extension_helper.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 2 chunks +5 lines, -1 line 0 comments Download
M chrome/renderer/extensions/extension_helper.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 2 chunks +6 lines, -2 lines 0 comments Download
M chrome/renderer/extensions/file_browser_handler_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +4 lines, -1 line 0 comments Download
M chrome/renderer/extensions/file_browser_handler_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 3 chunks +14 lines, -13 lines 0 comments Download
M chrome/renderer/extensions/file_browser_private_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +4 lines, -1 line 0 comments Download
M chrome/renderer/extensions/file_browser_private_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 3 chunks +12 lines, -12 lines 0 comments Download
M chrome/renderer/extensions/file_system_natives.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +6 lines, -3 lines 0 comments Download
M chrome/renderer/extensions/file_system_natives.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +15 lines, -15 lines 0 comments Download
M chrome/renderer/extensions/i18n_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -1 line 0 comments Download
M chrome/renderer/extensions/i18n_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +6 lines, -3 lines 0 comments Download
M chrome/renderer/extensions/json_schema_unittest.cc View 1 2 3 4 5 6 7 1 chunk +6 lines, -1 line 0 comments Download
M chrome/renderer/extensions/media_galleries_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +2 lines, -1 line 0 comments Download
M chrome/renderer/extensions/media_galleries_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/renderer/extensions/miscellaneous_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 1 chunk +2 lines, -1 line 0 comments Download
M chrome/renderer/extensions/miscellaneous_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 3 chunks +9 lines, -5 lines 0 comments Download
M chrome/renderer/extensions/module_system.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 9 chunks +47 lines, -16 lines 0 comments Download
M chrome/renderer/extensions/module_system.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 13 chunks +124 lines, -46 lines 0 comments Download
M chrome/renderer/extensions/module_system_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +7 lines, -5 lines 0 comments Download
M chrome/renderer/extensions/native_handler.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 1 chunk +16 lines, -31 lines 0 comments Download
M chrome/renderer/extensions/native_handler.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 1 chunk +5 lines, -44 lines 0 comments Download
A chrome/renderer/extensions/object_backed_native_handler.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 1 chunk +67 lines, -0 lines 0 comments Download
A chrome/renderer/extensions/object_backed_native_handler.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 1 chunk +81 lines, -0 lines 0 comments Download
M chrome/renderer/extensions/page_actions_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +2 lines, -1 line 0 comments Download
M chrome/renderer/extensions/page_actions_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/renderer/extensions/page_capture_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -1 line 0 comments Download
M chrome/renderer/extensions/page_capture_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +7 lines, -3 lines 0 comments Download
M chrome/renderer/extensions/request_sender.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +9 lines, -5 lines 0 comments Download
M chrome/renderer/extensions/request_sender.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 7 chunks +27 lines, -35 lines 0 comments Download
M chrome/renderer/extensions/runtime_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +3 lines, -6 lines 0 comments Download
M chrome/renderer/extensions/runtime_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 3 chunks +9 lines, -7 lines 0 comments Download
M chrome/renderer/extensions/send_request_natives.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +10 lines, -1 line 0 comments Download
M chrome/renderer/extensions/send_request_natives.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 2 chunks +19 lines, -7 lines 0 comments Download
M chrome/renderer/extensions/set_icon_natives.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +6 lines, -1 line 0 comments Download
M chrome/renderer/extensions/set_icon_natives.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +7 lines, -4 lines 0 comments Download
M chrome/renderer/extensions/sync_file_system_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +3 lines, -1 line 0 comments Download
M chrome/renderer/extensions/sync_file_system_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 2 chunks +5 lines, -3 lines 0 comments Download
M chrome/renderer/extensions/tabs_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -1 line 0 comments Download
M chrome/renderer/extensions/tabs_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +5 lines, -3 lines 0 comments Download
M chrome/renderer/extensions/tts_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +1 line, -1 line 0 comments Download
M chrome/renderer/extensions/tts_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/renderer/extensions/v8_schema_registry.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 2 chunks +3 lines, -2 lines 0 comments Download
M chrome/renderer/extensions/v8_schema_registry.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 2 chunks +2 lines, -3 lines 0 comments Download
M chrome/renderer/extensions/web_request_custom_bindings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +2 lines, -1 line 0 comments Download
M chrome/renderer/extensions/web_request_custom_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/renderer/extensions/webstore_bindings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 2 chunks +2 lines, -2 lines 0 comments Download
D chrome/renderer/resources/extensions/apitest.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +0 lines, -274 lines 0 comments Download
M chrome/renderer/resources/extensions/app_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +11 lines, -6 lines 0 comments Download
M chrome/renderer/resources/extensions/app_runtime_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 2 chunks +6 lines, -1 line 0 comments Download
M chrome/renderer/resources/extensions/app_window_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 3 chunks +12 lines, -4 lines 0 comments Download
A chrome/renderer/resources/extensions/binding.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +407 lines, -0 lines 0 comments Download
M chrome/renderer/resources/extensions/bluetooth_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 4 chunks +16 lines, -11 lines 0 comments Download
M chrome/renderer/resources/extensions/browser_action_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +6 lines, -3 lines 0 comments Download
M chrome/renderer/resources/extensions/content_settings_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +6 lines, -3 lines 0 comments Download
M chrome/renderer/resources/extensions/context_menus_custom_bindings.js View 1 2 3 4 5 6 7 3 chunks +6 lines, -2 lines 0 comments Download
M chrome/renderer/resources/extensions/declarative_content_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +15 lines, -11 lines 0 comments Download
M chrome/renderer/resources/extensions/declarative_webrequest_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +32 lines, -26 lines 0 comments Download
M chrome/renderer/resources/extensions/event.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 15 chunks +24 lines, -22 lines 0 comments Download
M chrome/renderer/resources/extensions/experimental.media_galleries_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +6 lines, -5 lines 0 comments Download
M chrome/renderer/resources/extensions/experimental.offscreenTabs_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +4 lines, -6 lines 0 comments Download
M chrome/renderer/resources/extensions/extension_custom_bindings.js View 1 2 3 4 5 6 7 8 5 chunks +17 lines, -16 lines 0 comments Download
M chrome/renderer/resources/extensions/file_browser_handler_custom_bindings.js View 1 2 3 4 5 6 7 3 chunks +9 lines, -3 lines 0 comments Download
M chrome/renderer/resources/extensions/file_browser_private_custom_bindings.js View 1 2 3 4 5 6 7 3 chunks +6 lines, -4 lines 0 comments Download
M chrome/renderer/resources/extensions/file_system_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 3 chunks +18 lines, -13 lines 0 comments Download
M chrome/renderer/resources/extensions/i18n_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +6 lines, -2 lines 0 comments Download
M chrome/renderer/resources/extensions/input.ime_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +13 lines, -9 lines 0 comments Download
M chrome/renderer/resources/extensions/json_schema.js View 1 2 3 4 5 6 7 2 chunks +3 lines, -0 lines 0 comments Download
M chrome/renderer/resources/extensions/last_error.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 1 chunk +46 lines, -9 lines 0 comments Download
M chrome/renderer/resources/extensions/media_galleries_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +6 lines, -5 lines 0 comments Download
M chrome/renderer/resources/extensions/miscellaneous_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 3 chunks +4 lines, -4 lines 0 comments Download
M chrome/renderer/resources/extensions/notifications_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 3 chunks +6 lines, -4 lines 0 comments Download
M chrome/renderer/resources/extensions/omnibox_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +6 lines, -2 lines 0 comments Download
M chrome/renderer/resources/extensions/page_action_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +6 lines, -3 lines 0 comments Download
M chrome/renderer/resources/extensions/page_actions_custom_bindings.js View 1 2 3 4 5 6 7 1 chunk +8 lines, -6 lines 0 comments Download
M chrome/renderer/resources/extensions/page_capture_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +6 lines, -4 lines 0 comments Download
M chrome/renderer/resources/extensions/permissions_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +11 lines, -7 lines 0 comments Download
M chrome/renderer/resources/extensions/runtime_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +14 lines, -9 lines 0 comments Download
D chrome/renderer/resources/extensions/schema_generated_bindings.js View 1 2 3 4 5 6 7 1 chunk +0 lines, -437 lines 0 comments Download
M chrome/renderer/resources/extensions/schema_utils.js View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M chrome/renderer/resources/extensions/send_request.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 4 chunks +27 lines, -12 lines 0 comments Download
M chrome/renderer/resources/extensions/storage_custom_bindings.js View 1 2 3 4 5 6 7 3 chunks +7 lines, -4 lines 0 comments Download
M chrome/renderer/resources/extensions/sync_file_system_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +6 lines, -2 lines 0 comments Download
M chrome/renderer/resources/extensions/system_indicator_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +6 lines, -3 lines 0 comments Download
M chrome/renderer/resources/extensions/tab_capture_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +6 lines, -4 lines 0 comments Download
M chrome/renderer/resources/extensions/tabs_custom_bindings.js View 1 2 3 4 5 6 7 3 chunks +9 lines, -4 lines 0 comments Download
A + chrome/renderer/resources/extensions/test_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 11 chunks +89 lines, -72 lines 0 comments Download
M chrome/renderer/resources/extensions/tts_custom_bindings.js View 1 2 3 4 5 6 7 4 chunks +8 lines, -3 lines 0 comments Download
M chrome/renderer/resources/extensions/tts_engine_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +5 lines, -1 line 0 comments Download
M chrome/renderer/resources/extensions/types_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +7 lines, -3 lines 0 comments Download
M chrome/renderer/resources/extensions/utils.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +13 lines, -0 lines 0 comments Download
M chrome/renderer/resources/extensions/web_request_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 7 chunks +12 lines, -7 lines 0 comments Download
M chrome/renderer/resources/extensions/web_request_internal_custom_bindings.js View 1 2 3 4 5 6 7 2 chunks +6 lines, -3 lines 0 comments Download
M chrome/renderer/resources/extensions/web_view.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +3 lines, -1 line 0 comments Download
M chrome/renderer/resources/extensions/web_view_experimental.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 1 chunk +1 line, -1 line 0 comments Download
M chrome/renderer/resources/extensions/webstore_custom_bindings.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +3 lines, -3 lines 0 comments Download
M chrome/renderer/resources/renderer_resources.grd View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/test/base/module_system_test.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 2 chunks +2 lines, -1 line 0 comments Download
M chrome/test/base/module_system_test.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 4 chunks +7 lines, -7 lines 0 comments Download

Messages

Total messages: 60 (0 generated)
not at google - send to devlin
Removing CC'ed people from the review while we talk about it. https://codereview.chromium.org/11571014/diff/1/chrome/common/extensions/api/extension_api.cc File chrome/common/extensions/api/extension_api.cc (right): ...
8 years ago (2012-12-13 22:26:40 UTC) #1
cduvall
https://codereview.chromium.org/11571014/diff/1/chrome/common/extensions/api/extension_api.h File chrome/common/extensions/api/extension_api.h (right): https://codereview.chromium.org/11571014/diff/1/chrome/common/extensions/api/extension_api.h#newcode94 chrome/common/extensions/api/extension_api.h:94: scoped_ptr<std::set<std::string> > GetAllAPINames(); On 2012/12/13 22:26:40, kalman wrote: > ...
8 years ago (2012-12-14 00:25:18 UTC) #2
not at google - send to devlin
https://codereview.chromium.org/11571014/diff/7001/chrome/renderer/extensions/chrome_v8_context.cc File chrome/renderer/extensions/chrome_v8_context.cc (right): https://codereview.chromium.org/11571014/diff/7001/chrome/renderer/extensions/chrome_v8_context.cc#newcode154 chrome/renderer/extensions/chrome_v8_context.cc:154: return *(available_extension_apis_.get()); use .reset(new ...) https://codereview.chromium.org/11571014/diff/7001/chrome/renderer/extensions/dispatcher.cc File chrome/renderer/extensions/dispatcher.cc (right): ...
8 years ago (2012-12-14 00:44:00 UTC) #3
cduvall
Still a work in progress. The C++ is almost there but I still need to ...
8 years ago (2012-12-14 02:04:50 UTC) #4
not at google - send to devlin
https://codereview.chromium.org/11571014/diff/18001/chrome/renderer/extensions/chrome_v8_context.cc File chrome/renderer/extensions/chrome_v8_context.cc (right): https://codereview.chromium.org/11571014/diff/18001/chrome/renderer/extensions/chrome_v8_context.cc#newcode146 chrome/renderer/extensions/chrome_v8_context.cc:146: available_extension_apis_.reset(new std::set<std::string>( available_extension_apis_.swap(GetAPIsForContext...) https://codereview.chromium.org/11571014/diff/18001/chrome/renderer/extensions/dispatcher.cc File chrome/renderer/extensions/dispatcher.cc (right): https://codereview.chromium.org/11571014/diff/18001/chrome/renderer/extensions/dispatcher.cc#newcode595 chrome/renderer/extensions/dispatcher.cc:595: ...
7 years, 11 months ago (2013-01-24 21:10:12 UTC) #5
cduvall
Mostly added TODOs and fixed some of the quick things. https://codereview.chromium.org/11571014/diff/18001/chrome/renderer/extensions/chrome_v8_context.cc File chrome/renderer/extensions/chrome_v8_context.cc (right): https://codereview.chromium.org/11571014/diff/18001/chrome/renderer/extensions/chrome_v8_context.cc#newcode146 ...
7 years, 11 months ago (2013-01-24 22:15:15 UTC) #6
not at google - send to devlin
Ok - this should be pleeeenty of stuff to go on with for now. https://codereview.chromium.org/11571014/diff/18001/chrome/renderer/extensions/chrome_v8_context.cc ...
7 years, 11 months ago (2013-01-25 00:44:31 UTC) #7
cduvall
I addressed most of the comments from the previous patch. Still TODO: - apitest is ...
7 years, 10 months ago (2013-02-12 02:13:47 UTC) #8
not at google - send to devlin
https://codereview.chromium.org/11571014/diff/42011/chrome/browser/autocomplete/autocomplete_match.cc File chrome/browser/autocomplete/autocomplete_match.cc (right): https://codereview.chromium.org/11571014/diff/42011/chrome/browser/autocomplete/autocomplete_match.cc#newcode345 chrome/browser/autocomplete/autocomplete_match.cc:345: // NOTE: This logic is mirrored by |sanitizeString()| in ...
7 years, 10 months ago (2013-02-13 01:45:49 UTC) #9
koz (OOO until 15th September)
https://codereview.chromium.org/11571014/diff/42011/chrome/renderer/extensions/binding_generating_native_handler.cc File chrome/renderer/extensions/binding_generating_native_handler.cc (right): https://codereview.chromium.org/11571014/diff/42011/chrome/renderer/extensions/binding_generating_native_handler.cc#newcode44 chrome/renderer/extensions/binding_generating_native_handler.cc:44: object->Set(v8::String::New(bind_to_.c_str()), compiled_schema); On 2013/02/13 01:45:49, kalman wrote: > I'll ...
7 years, 10 months ago (2013-02-14 06:21:13 UTC) #10
cduvall
Should be done except for the pending WebKit/devtools problem. https://codereview.chromium.org/11571014/diff/42011/chrome/browser/autocomplete/autocomplete_match.cc File chrome/browser/autocomplete/autocomplete_match.cc (right): https://codereview.chromium.org/11571014/diff/42011/chrome/browser/autocomplete/autocomplete_match.cc#newcode345 chrome/browser/autocomplete/autocomplete_match.cc:345: ...
7 years, 10 months ago (2013-02-15 00:40:27 UTC) #11
not at google - send to devlin
This basically lg to me now, though there are a couple of things to point ...
7 years, 10 months ago (2013-02-15 22:26:17 UTC) #12
cduvall
https://codereview.chromium.org/11571014/diff/55001/chrome/common/extensions/api/extension_api.cc File chrome/common/extensions/api/extension_api.cc (right): https://codereview.chromium.org/11571014/diff/55001/chrome/common/extensions/api/extension_api.cc#newcode358 chrome/common/extensions/api/extension_api.cc:358: IDR_EXTENSION_API_JSON_DEVTOOLS)); On 2013/02/15 22:26:17, kalman wrote: > Good news! ...
7 years, 10 months ago (2013-02-19 23:58:49 UTC) #13
not at google - send to devlin
lgtm This is a pretty epic and far-reaching change so I want to get Matt ...
7 years, 10 months ago (2013-02-20 00:36:38 UTC) #14
not at google - send to devlin
https://codereview.chromium.org/11571014/diff/55001/chrome/renderer/extensions/chrome_v8_context.cc File chrome/renderer/extensions/chrome_v8_context.cc (right): https://codereview.chromium.org/11571014/diff/55001/chrome/renderer/extensions/chrome_v8_context.cc#newcode26 chrome/renderer/extensions/chrome_v8_context.cc:26: const char kUnavailableMessage[] = "API is unavailable."; On 2013/02/20 ...
7 years, 10 months ago (2013-02-20 00:49:29 UTC) #15
cduvall
https://codereview.chromium.org/11571014/diff/68001/chrome/renderer/extensions/chrome_v8_context.h File chrome/renderer/extensions/chrome_v8_context.h (right): https://codereview.chromium.org/11571014/diff/68001/chrome/renderer/extensions/chrome_v8_context.h#newcode39 chrome/renderer/extensions/chrome_v8_context.h:39: void Invalidate(); On 2013/02/20 00:36:38, kalman wrote: > comment ...
7 years, 10 months ago (2013-02-20 00:57:53 UTC) #16
Matt Perry
I'll take a look, but don't let me stop you from landing this. If I ...
7 years, 10 months ago (2013-02-20 02:40:45 UTC) #17
cduvall
https://codereview.chromium.org/11571014/diff/77009/chrome/renderer/resources/extensions/binding.js File chrome/renderer/resources/extensions/binding.js (right): https://codereview.chromium.org/11571014/diff/77009/chrome/renderer/resources/extensions/binding.js#newcode23 chrome/renderer/resources/extensions/binding.js:23: this._apiFunctions = {}; On 2013/02/20 02:40:46, Matt Perry wrote: ...
7 years, 10 months ago (2013-02-20 17:47:03 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/84001
7 years, 10 months ago (2013-02-20 17:47:53 UTC) #19
commit-bot: I haz the power
Presubmit check for 11571014-84001 failed and returned exit status 1. INFO:root:Found 73 file(s). Running presubmit ...
7 years, 10 months ago (2013-02-20 17:48:29 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/84001
7 years, 10 months ago (2013-02-20 17:50:15 UTC) #21
commit-bot: I haz the power
Failed to trigger a try job on mac_rel HTTP Error 400: Bad Request
7 years, 10 months ago (2013-02-20 18:45:16 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/88004
7 years, 10 months ago (2013-02-20 18:45:21 UTC) #23
commit-bot: I haz the power
Retried try job too often on mac_rel for step(s) browser_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=mac_rel&number=101122
7 years, 10 months ago (2013-02-20 21:29:57 UTC) #24
Matt Perry
https://codereview.chromium.org/11571014/diff/88004/chrome/renderer/resources/extensions/binding.js File chrome/renderer/resources/extensions/binding.js (right): https://codereview.chromium.org/11571014/diff/88004/chrome/renderer/resources/extensions/binding.js#newcode122 chrome/renderer/resources/extensions/binding.js:122: this._schema = schema; you missed these ones.
7 years, 10 months ago (2013-02-21 01:07:57 UTC) #25
Matt Perry
LGTM! Great stuff. 2 more minor comments. https://codereview.chromium.org/11571014/diff/88004/chrome/renderer/extensions/dispatcher.h File chrome/renderer/extensions/dispatcher.h (right): https://codereview.chromium.org/11571014/diff/88004/chrome/renderer/extensions/dispatcher.h#newcode217 chrome/renderer/extensions/dispatcher.h:217: typedef void ...
7 years, 10 months ago (2013-02-21 01:57:43 UTC) #26
miu
FYI--I added bug 177163 to the BUG= line.
7 years, 10 months ago (2013-02-26 00:34:11 UTC) #27
cduvall
https://codereview.chromium.org/11571014/diff/88004/chrome/renderer/extensions/dispatcher.h File chrome/renderer/extensions/dispatcher.h (right): https://codereview.chromium.org/11571014/diff/88004/chrome/renderer/extensions/dispatcher.h#newcode217 chrome/renderer/extensions/dispatcher.h:217: typedef void (ModuleSystem::*LazyFieldSetter)(v8::Handle<v8::Object>, On 2013/02/21 01:57:43, Matt Perry wrote: ...
7 years, 10 months ago (2013-02-26 00:36:56 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/91118
7 years, 10 months ago (2013-02-26 00:38:01 UTC) #29
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-02-26 01:10:43 UTC) #30
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/85036
7 years, 10 months ago (2013-02-26 01:12:21 UTC) #31
commit-bot: I haz the power
Failed to trigger a try job on linux_rel HTTP Error 400: Bad Request
7 years, 10 months ago (2013-02-26 03:22:14 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/95071
7 years, 10 months ago (2013-02-26 03:22:20 UTC) #33
commit-bot: I haz the power
Retried try job too often on mac_rel for step(s) interactive_ui_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=mac_rel&number=102613
7 years, 10 months ago (2013-02-26 04:54:13 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/85050
7 years, 9 months ago (2013-02-26 21:53:18 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/95078
7 years, 9 months ago (2013-02-27 00:31:10 UTC) #36
commit-bot: I haz the power
Change committed as 184837
7 years, 9 months ago (2013-02-27 02:38:04 UTC) #37
not at google - send to devlin
lgtm https://codereview.chromium.org/11571014/diff/116001/chrome/renderer/extensions/dispatcher.cc File chrome/renderer/extensions/dispatcher.cc (right): https://codereview.chromium.org/11571014/diff/116001/chrome/renderer/extensions/dispatcher.cc#newcode636 chrome/renderer/extensions/dispatcher.cc:636: if (!value->IsUndefined() && value->IsObject()) I think that IsObject ...
7 years, 9 months ago (2013-03-01 00:36:05 UTC) #38
cduvall
https://codereview.chromium.org/11571014/diff/116001/chrome/renderer/extensions/dispatcher.cc File chrome/renderer/extensions/dispatcher.cc (right): https://codereview.chromium.org/11571014/diff/116001/chrome/renderer/extensions/dispatcher.cc#newcode636 chrome/renderer/extensions/dispatcher.cc:636: if (!value->IsUndefined() && value->IsObject()) On 2013/03/01 00:36:06, kalman wrote: ...
7 years, 9 months ago (2013-03-01 00:43:52 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/113003
7 years, 9 months ago (2013-03-01 00:48:48 UTC) #40
commit-bot: I haz the power
Failed to apply patch for chrome/renderer/extensions/dispatcher.cc: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
7 years, 9 months ago (2013-03-01 03:09:49 UTC) #41
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/110019
7 years, 9 months ago (2013-03-01 16:59:40 UTC) #42
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/112035
7 years, 9 months ago (2013-03-01 18:19:03 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/118146
7 years, 9 months ago (2013-03-01 19:03:53 UTC) #44
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/111154
7 years, 9 months ago (2013-03-02 07:22:45 UTC) #45
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/111154
7 years, 9 months ago (2013-03-02 16:01:20 UTC) #46
commit-bot: I haz the power
Change committed as 185709
7 years, 9 months ago (2013-03-02 16:58:44 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/130001
7 years, 9 months ago (2013-03-05 22:25:39 UTC) #48
commit-bot: I haz the power
Retried try job too often on mac_rel for step(s) browser_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=mac_rel&number=105532
7 years, 9 months ago (2013-03-06 00:24:32 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/163005
7 years, 9 months ago (2013-03-06 20:44:22 UTC) #50
commit-bot: I haz the power
Failed to apply patch for chrome/renderer/extensions/dispatcher.cc: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
7 years, 9 months ago (2013-03-06 20:45:04 UTC) #51
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/154002
7 years, 9 months ago (2013-03-06 21:39:12 UTC) #52
commit-bot: I haz the power
Retried try job too often on mac_rel for step(s) browser_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=mac_rel&number=106060
7 years, 9 months ago (2013-03-07 00:09:45 UTC) #53
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/169001
7 years, 9 months ago (2013-03-07 01:20:51 UTC) #54
commit-bot: I haz the power
Change committed as 186643
7 years, 9 months ago (2013-03-07 06:32:00 UTC) #55
tonyg
On 2013/03/07 06:32:00, I haz the power (commit-bot) wrote: > Change committed as 186643 This ...
7 years, 9 months ago (2013-03-07 18:41:05 UTC) #56
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/191001
7 years, 9 months ago (2013-03-09 04:33:22 UTC) #57
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 9 months ago (2013-03-09 04:59:45 UTC) #58
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/cduvall@chromium.org/11571014/206001
7 years, 9 months ago (2013-03-09 06:51:03 UTC) #59
commit-bot: I haz the power
7 years, 9 months ago (2013-03-09 14:26:27 UTC) #60
Message was sent while issue was closed.
Change committed as 187143

Powered by Google App Engine
This is Rietveld 408576698