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

Issue 1190203002: Move (most of) chrome/browser/drive into components/drive/service. (Closed)

Created:
5 years, 6 months ago by Łukasz Anforowicz
Modified:
5 years, 5 months ago
CC:
chromium-apps-reviews_chromium.org, chromium-reviews, davemoore+watch_chromium.org, extensions-reviews_chromium.org, hashimoto+watch_chromium.org, kinuko+fileapi, maniscalco+watch_chromium.org, maxbogue+watch_chromium.org, nhiroki, oshima+watch_chromium.org, plaree+watch_chromium.org, pvalenzuela+watch_chromium.org, rginda+watch_chromium.org, stevenjb+watch_chromium.org, tfarina, tim+watch_chromium.org, tzik, zea+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Move (most of) chrome/browser/drive into components/drive. Note that drive_notification_manager_factory is left behind in chrome/browser/drive. This is because it needs to stay dependent on the browser. This is okay, because drive_notification_manager_factory is not needed by drive::FileSystem and other parts of drive libraries that we want to componentize. Also note that some things moved to components/drive continue to have slightly undesirable dependencies: - Tests are still built and executed as part of the browser test suites. - drive_uploader.cc depends on content/public/browser/power_save_blocker.h This means that to use components/drive outside of the browser, users of components/drive have to provide a no-op implementation of power_save_blocker.h The most desirable approach in the long-term would be to componentize power_save_blocker.h. An alternative would be to continue with the state introduced by the current changelist (or to introduce drive-specific abstraction similar to power_save_blocker.h, but outside of the browser). - drive_api_util.cc depends on storage/browser/fileapi/file_stream_reader.h To get rid of this dependency, it is probably best to move FileStreamMd5Digester class closer to the only point of usage (c/b/chromeos/extensions/file_manager/private_api_file_system.cc). Landing via CQ with NOPRESUBMIT=true, because "git cl presubmit" incorrectly identifies target directory of a dependency (we are depending on third_party/cacheinvalidation/src/google/cacheinvalidation/types.proto and including the generated header via google/cacheinvalidation/types.pb.h). I believe this is a case of crbug.com/448570. All other presubmit checks are passing AFAIK: $ git cl presubmit Running presubmit commit checks ... ** Presubmit ERRORS ** Missing LGTM from OWNERS of dependencies added to DEPS: '+google/cacheinvalidation/types.pb.h', Presubmit checks took 2.9s to calculate. Test steps: 1. Verify that things still build via GYP (and unit tests pass). $ GYP_DEFINES="use_goma=1 gomadir=... chromeos=1" gclient sync $ ninja -C out/Debug -j 150 chrome unit_tests \ interactive_ui_tests browser_tests drive $ out/Debug/unit_tests 2. Verify that things still builds via GN. $ gn gen out/Default --args='target_os="chromeos" use_goma=true' $ ninja -C out/Default -j 150 chrome unit_tests \ interactive_ui_tests browser_tests components/drive TEST=Please see "Test steps" above. BUG=257943, 498951 NOPRESUBMIT=true Committed: https://crrev.com/8acc4eb18b6919f36413a10718a607f2a34fb8f6 Cr-Commit-Position: refs/heads/master@{#339512}

Patch Set 1 : #

Patch Set 2 : Flattened (somewhat) the contents of components/drive. #

Patch Set 3 : Fixed copyright headers in the new files. #

Total comments: 10

Patch Set 4 : Addressed Ryo's code review feedback. #

Patch Set 5 : Added specific owners for components/drive.gypi #

Total comments: 6

Patch Set 6 : Addressed feedback from jochen. #

Patch Set 7 : Rebasing... #

Patch Set 8 : Rebasing... #

Patch Set 9 : Excluding components/drive.gypi on iOS. Re-adding drive_api_service_unittest.cc #

Patch Set 10 : Rebasing... #

Unified diffs Side-by-side diffs Delta from patch set Stats (+455 lines, -10284 lines) Patch
M chrome/browser/BUILD.gn View 1 2 3 4 5 6 7 8 9 3 chunks +5 lines, -7 lines 0 comments Download
A chrome/browser/apps/drive/DEPS View 1 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/apps/drive/drive_app_converter.h View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/apps/drive/drive_app_provider.h View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/apps/drive/drive_app_provider.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/apps/drive/drive_app_provider_browsertest.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/apps/drive/drive_service_bridge.cc View 1 1 chunk +4 lines, -4 lines 0 comments Download
A chrome/browser/chromeos/drive/DEPS View 1 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/drive/change_list_loader.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/change_list_loader_unittest.cc View 1 2 3 4 5 6 7 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/chromeos/drive/change_list_processor.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/directory_loader.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/directory_loader_unittest.cc View 1 2 3 4 5 6 7 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/chromeos/drive/drive_file_stream_reader_unittest.cc View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/drive/drive_integration_service.h View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/drive_integration_service.cc View 1 2 chunks +5 lines, -5 lines 0 comments Download
M chrome/browser/chromeos/drive/drive_integration_service_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/fake_file_system.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/fake_file_system_unittest.cc View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/drive/file_cache.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/file_system/copy_operation.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/file_system/copy_operation_unittest.cc View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/drive/file_system/download_operation_unittest.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/file_system/get_file_for_saving_operation.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/file_system/operation_test_base.cc View 1 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/chromeos/drive/file_system/search_operation.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/file_system/search_operation_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/file_system_unittest.cc View 1 2 3 4 5 6 7 1 chunk +4 lines, -4 lines 0 comments Download
M chrome/browser/chromeos/drive/file_task_executor.cc View 1 2 3 4 5 6 2 chunks +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/file_task_executor_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/fileapi/file_system_backend_delegate.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/fileapi/webkit_file_stream_reader_impl_unittest.cc View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/drive/job_scheduler.h View 1 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/drive/job_scheduler.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/job_scheduler_unittest.cc View 1 2 3 4 5 6 7 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/chromeos/drive/resource_entry_conversion.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/resource_entry_conversion_unittest.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/resource_metadata_storage.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/search_metadata.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/search_metadata_unittest.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/sync/entry_revert_performer.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/sync/entry_revert_performer_unittest.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/sync/entry_update_performer_unittest.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/drive/sync/remove_performer.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/sync/remove_performer_unittest.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/drive/sync_client_unittest.cc View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
A chrome/browser/chromeos/extensions/file_manager/DEPS View 1 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/extensions/file_manager/event_router.h View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/extensions/file_manager/event_router.cc View 1 2 3 4 5 6 7 2 chunks +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/extensions/file_manager/private_api_base.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/extensions/file_manager/private_api_drive.cc View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/extensions/file_manager/private_api_file_system.cc View 1 2 3 4 5 6 7 8 9 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/extensions/file_manager/private_api_misc.cc View 1 2 3 4 5 6 7 2 chunks +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/extensions/file_manager/private_api_mount.cc View 1 1 chunk +1 line, -1 line 0 comments Download
A chrome/browser/chromeos/file_manager/DEPS View 1 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/file_manager/external_filesystem_apitest.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/file_manager/file_manager_browsertest_base.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/file_manager/file_tasks.cc View 1 2 3 4 5 6 7 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/file_manager/file_tasks_unittest.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/file_manager/fileapi_util_unittest.cc View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/chromeos/file_manager/open_with_browser.cc View 1 2 3 4 5 6 2 chunks +1 line, -1 line 0 comments Download
A chrome/browser/chromeos/fileapi/DEPS View 1 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/browser/chromeos/fileapi/external_file_url_request_job_unittest.cc View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/drive/DEPS View 1 1 chunk +2 lines, -17 lines 0 comments Download
M chrome/browser/drive/README View 1 2 3 1 chunk +4 lines, -3 lines 0 comments Download
D chrome/browser/drive/drive_api_service.h View 1 2 3 4 5 6 7 1 chunk +0 lines, -269 lines 0 comments Download
D chrome/browser/drive/drive_api_service.cc View 1 2 3 4 5 6 7 1 chunk +0 lines, -872 lines 0 comments Download
D chrome/browser/drive/drive_api_service_unittest.cc View 1 2 3 4 5 6 7 8 1 chunk +0 lines, -79 lines 0 comments Download
D chrome/browser/drive/drive_api_util.h View 1 chunk +0 lines, -124 lines 0 comments Download
D chrome/browser/drive/drive_api_util.cc View 1 chunk +0 lines, -249 lines 0 comments Download
D chrome/browser/drive/drive_api_util_unittest.cc View 1 chunk +0 lines, -110 lines 0 comments Download
D chrome/browser/drive/drive_app_registry.h View 1 chunk +0 lines, -160 lines 0 comments Download
D chrome/browser/drive/drive_app_registry.cc View 1 chunk +0 lines, -246 lines 0 comments Download
D chrome/browser/drive/drive_app_registry_observer.h View 1 chunk +0 lines, -21 lines 0 comments Download
D chrome/browser/drive/drive_app_registry_unittest.cc View 1 chunk +0 lines, -224 lines 0 comments Download
D chrome/browser/drive/drive_notification_manager.h View 1 2 3 4 5 6 1 chunk +0 lines, -98 lines 0 comments Download
D chrome/browser/drive/drive_notification_manager.cc View 1 2 3 4 5 6 1 chunk +0 lines, -160 lines 0 comments Download
M chrome/browser/drive/drive_notification_manager_factory.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
D chrome/browser/drive/drive_notification_observer.h View 1 chunk +0 lines, -26 lines 0 comments Download
D chrome/browser/drive/drive_service_interface.h View 1 chunk +0 lines, -467 lines 0 comments Download
D chrome/browser/drive/drive_service_interface.cc View 1 chunk +0 lines, -27 lines 0 comments Download
D chrome/browser/drive/drive_uploader.h View 1 chunk +0 lines, -240 lines 0 comments Download
D chrome/browser/drive/drive_uploader.cc View 1 chunk +0 lines, -533 lines 0 comments Download
D chrome/browser/drive/drive_uploader_unittest.cc View 1 chunk +0 lines, -955 lines 0 comments Download
D chrome/browser/drive/dummy_drive_service.h View 1 chunk +0 lines, -166 lines 0 comments Download
D chrome/browser/drive/dummy_drive_service.cc View 1 chunk +0 lines, -224 lines 0 comments Download
D chrome/browser/drive/event_logger.h View 1 chunk +0 lines, -69 lines 0 comments Download
D chrome/browser/drive/event_logger.cc View 1 chunk +0 lines, -63 lines 0 comments Download
D chrome/browser/drive/event_logger_unittest.cc View 1 chunk +0 lines, -43 lines 0 comments Download
D chrome/browser/drive/fake_drive_service.h View 1 chunk +0 lines, -406 lines 0 comments Download
D chrome/browser/drive/fake_drive_service.cc View 1 2 3 4 5 6 1 chunk +0 lines, -1787 lines 0 comments Download
D chrome/browser/drive/fake_drive_service_unittest.cc View 1 chunk +0 lines, -2177 lines 0 comments Download
D chrome/browser/drive/test_util.h View 1 chunk +0 lines, -19 lines 0 comments Download
D chrome/browser/drive/test_util.cc View 1 chunk +0 lines, -193 lines 0 comments Download
M chrome/browser/extensions/api/file_system/DEPS View 1 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/file_system/file_system_apitest_chromeos.cc View 1 chunk +1 line, -1 line 0 comments Download
A chrome/browser/extensions/api/sync_file_system/DEPS View 1 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/sync_file_system/sync_file_system_browsertest.cc View 1 chunk +1 line, -1 line 0 comments Download
A chrome/browser/sync_file_system/DEPS View 1 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/conflict_resolver.cc View 1 2 chunks +3 lines, -3 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/conflict_resolver_unittest.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/drive_backend_sync_unittest.cc View 1 2 chunks +3 lines, -3 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/drive_backend_test_util.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/drive_backend/drive_backend_util.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/drive_backend/drive_service_on_worker.h View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/drive_backend/drive_service_wrapper.h View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/drive_backend/drive_service_wrapper.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/drive_backend/drive_uploader_on_worker.h View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/drive_backend/drive_uploader_wrapper.h View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/drive_backend/drive_uploader_wrapper.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/drive_backend/fake_drive_service_helper.h View 1 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/fake_drive_uploader.h View 1 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/folder_creator.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/list_changes_task.cc View 2 chunks +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/drive_backend/local_to_remote_syncer.cc View 1 2 chunks +3 lines, -3 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/local_to_remote_syncer_unittest.cc View 1 2 chunks +3 lines, -3 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/metadata_database.cc View 1 2 3 4 5 6 7 8 9 2 chunks +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/drive_backend/register_app_task.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/register_app_task_unittest.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer_unittest.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/sync_engine.h View 1 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/sync_engine.cc View 1 2 chunks +4 lines, -4 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/sync_engine_context.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/sync_engine_initializer.cc View 2 chunks +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/drive_backend/sync_engine_initializer_unittest.cc View 1 2 chunks +3 lines, -3 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/sync_engine_unittest.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/sync_worker.cc View 2 chunks +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/drive_backend/sync_worker_unittest.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/drive_backend/uninstall_app_task.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/sync_file_system/logger.h View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/sync_file_system/logger.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/webui/chromeos/DEPS View 1 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/chromeos/drive_internals_ui.cc View 1 1 chunk +4 lines, -4 lines 0 comments Download
A chrome/browser/ui/webui/sync_file_system_internals/DEPS View 1 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.cc View 1 2 chunks +1 line, -1 line 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 6 7 8 9 2 chunks +1 line, -16 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 5 6 7 8 9 2 chunks +7 lines, -12 lines 0 comments Download
M components/OWNERS View 1 2 3 4 5 6 7 1 chunk +8 lines, -0 lines 0 comments Download
M components/components.gyp View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
A components/drive.gypi View 1 2 3 4 5 6 1 chunk +83 lines, -0 lines 0 comments Download
A components/drive/BUILD.gn View 1 2 3 4 5 6 1 chunk +57 lines, -0 lines 0 comments Download
A components/drive/DEPS View 1 1 chunk +24 lines, -0 lines 0 comments Download
A + components/drive/OWNERS View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/drive/README View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/drive/drive_api_util.h View 1 3 2 chunks +3 lines, -3 lines 0 comments Download
A + components/drive/drive_api_util.cc View 1 3 1 chunk +1 line, -1 line 0 comments Download
A + components/drive/drive_api_util_unittest.cc View 1 3 1 chunk +1 line, -1 line 0 comments Download
A + components/drive/drive_app_registry.h View 1 3 2 chunks +3 lines, -3 lines 0 comments Download
A + components/drive/drive_app_registry.cc View 1 3 2 chunks +3 lines, -3 lines 0 comments Download
A + components/drive/drive_app_registry_observer.h View 1 3 2 chunks +3 lines, -3 lines 0 comments Download
A + components/drive/drive_app_registry_unittest.cc View 1 3 1 chunk +3 lines, -3 lines 0 comments Download
A + components/drive/drive_notification_manager.h View 1 2 3 4 5 6 2 chunks +4 lines, -4 lines 0 comments Download
A + components/drive/drive_notification_manager.cc View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
A + components/drive/drive_notification_observer.h View 1 3 2 chunks +3 lines, -3 lines 0 comments Download
A + components/drive/drive_uploader.h View 1 3 3 chunks +4 lines, -4 lines 0 comments Download
A + components/drive/drive_uploader.cc View 1 3 2 chunks +2 lines, -2 lines 0 comments Download
A + components/drive/drive_uploader_unittest.cc View 1 3 2 chunks +2 lines, -2 lines 0 comments Download
A + components/drive/event_logger.h View 1 3 2 chunks +3 lines, -3 lines 0 comments Download
A + components/drive/event_logger.cc View 1 3 1 chunk +1 line, -1 line 0 comments Download
A + components/drive/event_logger_unittest.cc View 1 3 1 chunk +1 line, -1 line 0 comments Download
A + components/drive/service/drive_api_service.h View 1 2 3 4 5 6 7 3 chunks +4 lines, -4 lines 0 comments Download
A + components/drive/service/drive_api_service.cc View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
A + components/drive/service/drive_api_service_unittest.cc View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
A + components/drive/service/drive_service_interface.h View 3 2 chunks +3 lines, -3 lines 0 comments Download
A + components/drive/service/drive_service_interface.cc View 3 1 chunk +1 line, -1 line 0 comments Download
A + components/drive/service/dummy_drive_service.h View 3 2 chunks +4 lines, -4 lines 0 comments Download
A + components/drive/service/dummy_drive_service.cc View 3 1 chunk +1 line, -1 line 0 comments Download
A + components/drive/service/fake_drive_service.h View 3 2 chunks +4 lines, -4 lines 0 comments Download
A + components/drive/service/fake_drive_service.cc View 1 2 3 4 5 6 2 chunks +2 lines, -2 lines 0 comments Download
A + components/drive/service/fake_drive_service_unittest.cc View 3 2 chunks +2 lines, -2 lines 0 comments Download
A + components/drive/service/test_util.h View 3 2 chunks +3 lines, -3 lines 0 comments Download
A + components/drive/service/test_util.cc View 1 3 1 chunk +3 lines, -3 lines 0 comments Download

Messages

Total messages: 66 (25 generated)
Łukasz Anforowicz
Ryo, could you please take a look?
5 years, 6 months ago (2015-06-19 18:46:19 UTC) #5
tfarina
You can collapse these three ninja commands in one line: $ ninja -C out/Debug target1 ...
5 years, 6 months ago (2015-06-19 18:52:37 UTC) #6
Łukasz Anforowicz
Ryo, could you please take a look? Thanks for pointing out (offline) that chrome/browser/drive and ...
5 years, 6 months ago (2015-06-22 19:27:25 UTC) #7
hashimoto
Almost looking good, but probably it might be better to start with moving a relatively ...
5 years, 6 months ago (2015-06-22 23:16:16 UTC) #8
Łukasz Anforowicz
Ryo, could you please take another look? I think moving a single file wouldn't help ...
5 years, 6 months ago (2015-06-22 23:57:23 UTC) #9
hashimoto
lgtm, thank you for making a new component directory for drive!
5 years, 6 months ago (2015-06-23 01:11:42 UTC) #10
Łukasz Anforowicz
Tomasz, could you please take a look at: chrome/browser/chromeos/file_manager, chrome/browser/chromeos/extensions/file_manager, chrome/browser/chromeos/fileapi, chrome/browser/extensions/api/file_system?
5 years, 6 months ago (2015-06-23 15:36:47 UTC) #12
mtomasz
lgtm
5 years, 6 months ago (2015-06-24 02:25:01 UTC) #13
Łukasz Anforowicz
Kinuko, could you please take a look for\ chrome/browser/sync_file_system, chrome/browser/ui/webui/sync_file_system_internals?
5 years, 6 months ago (2015-06-24 16:06:10 UTC) #16
Łukasz Anforowicz
Kinuko, could you please take a look for\ chrome/browser/sync_file_system, chrome/browser/ui/webui/sync_file_system_internals?
5 years, 6 months ago (2015-06-24 16:06:11 UTC) #17
kinuko
On 2015/06/24 16:06:11, Łukasz Anforowicz wrote: > Kinuko, could you please take a look for\ ...
5 years, 6 months ago (2015-06-25 04:42:12 UTC) #18
Łukasz Anforowicz
Xiyuan, could you please take a look for chrome/browser/apps/drive?
5 years, 6 months ago (2015-06-25 16:51:54 UTC) #20
xiyuan
c/b/apps/drive LGTM
5 years, 6 months ago (2015-06-25 16:55:04 UTC) #21
Łukasz Anforowicz
jochen@, could you please take a look for chrome/browser/BUILD.gn components/OWNERS components/components.gyp ? Also - let ...
5 years, 6 months ago (2015-06-25 17:31:41 UTC) #23
jochen (gone - plz use gerrit)
https://codereview.chromium.org/1190203002/diff/140001/components/drive.gypi File components/drive.gypi (right): https://codereview.chromium.org/1190203002/diff/140001/components/drive.gypi#newcode21 components/drive.gypi:21: '../third_party/re2/re2.gyp:re2', same here, as long as you include storage ...
5 years, 5 months ago (2015-06-26 14:50:54 UTC) #24
Łukasz Anforowicz
jochen, thank you for the feedback. Could you please take another look? https://codereview.chromium.org/1190203002/diff/140001/components/drive.gypi File components/drive.gypi ...
5 years, 5 months ago (2015-06-26 22:37:23 UTC) #25
jochen (gone - plz use gerrit)
lgtm
5 years, 5 months ago (2015-06-30 07:53:10 UTC) #26
Łukasz Anforowicz
jam@, could you please take a look? (mostly at the new chrome/browser/drive/DEPS and maybe at ...
5 years, 5 months ago (2015-06-30 16:10:32 UTC) #28
Łukasz Anforowicz
On 2015/06/30 16:10:32, Łukasz Anforowicz wrote: > jam@, could you please take a look? (mostly ...
5 years, 5 months ago (2015-06-30 17:44:52 UTC) #29
mtomasz
On 2015/06/30 17:44:52, Łukasz Anforowicz wrote: > On 2015/06/30 16:10:32, Łukasz Anforowicz wrote: > > ...
5 years, 5 months ago (2015-07-08 04:51:54 UTC) #30
jam
On 2015/06/30 16:10:32, Łukasz Anforowicz wrote: > jam@, could you please take a look? (mostly ...
5 years, 5 months ago (2015-07-09 16:42:13 UTC) #31
Łukasz Anforowicz
Misha, can you please review the components/drive/DEPS -> net dependency? (which is simply being copied ...
5 years, 5 months ago (2015-07-09 17:27:44 UTC) #33
mef
On 2015/07/09 17:27:44, Łukasz Anforowicz wrote: > Misha, can you please review the components/drive/DEPS -> ...
5 years, 5 months ago (2015-07-09 19:05:36 UTC) #34
Łukasz Anforowicz
On 2015/07/09 19:05:36, mef wrote: > On 2015/07/09 17:27:44, Łukasz Anforowicz wrote: > > Misha, ...
5 years, 5 months ago (2015-07-09 19:08:24 UTC) #35
mef
On 2015/07/09 19:08:24, Łukasz Anforowicz wrote: > On 2015/07/09 19:05:36, mef wrote: > > On ...
5 years, 5 months ago (2015-07-09 19:14:43 UTC) #36
Łukasz Anforowicz
Roger, can you please review the components/drive/DEPS -> google_apis dependency? (this dependency is simply being ...
5 years, 5 months ago (2015-07-09 20:10:59 UTC) #38
mtomasz
On 2015/07/09 20:10:59, Łukasz Anforowicz wrote: > Roger, can you please review the components/drive/DEPS -> ...
5 years, 5 months ago (2015-07-14 01:33:06 UTC) #39
Roger Tawa OOO till Jul 10th
lgtm google_apis deps sorry for late response, was away last week and just catching up.
5 years, 5 months ago (2015-07-14 21:48:42 UTC) #40
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1190203002/200001
5 years, 5 months ago (2015-07-14 23:59:48 UTC) #43
commit-bot: I haz the power
Try jobs failed on following builders: ios_rel_device_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_rel_device_ninja/builds/87535)
5 years, 5 months ago (2015-07-15 00:37:07 UTC) #45
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1190203002/200001
5 years, 5 months ago (2015-07-15 01:21:15 UTC) #47
commit-bot: I haz the power
Try jobs failed on following builders: ios_rel_device_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_rel_device_ninja/builds/87576)
5 years, 5 months ago (2015-07-15 01:51:27 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1190203002/200001
5 years, 5 months ago (2015-07-15 06:07:49 UTC) #51
commit-bot: I haz the power
Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/45367)
5 years, 5 months ago (2015-07-15 06:52:46 UTC) #53
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1190203002/200001
5 years, 5 months ago (2015-07-16 01:57:30 UTC) #55
commit-bot: I haz the power
Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/45782)
5 years, 5 months ago (2015-07-16 02:09:02 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1190203002/200001
5 years, 5 months ago (2015-07-16 07:25:16 UTC) #59
commit-bot: I haz the power
Try jobs failed on following builders: ios_rel_device_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_rel_device_ninja/builds/88102)
5 years, 5 months ago (2015-07-16 07:58:14 UTC) #61
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1190203002/240001
5 years, 5 months ago (2015-07-20 19:54:50 UTC) #64
commit-bot: I haz the power
Committed patchset #10 (id:240001)
5 years, 5 months ago (2015-07-20 20:57:47 UTC) #65
commit-bot: I haz the power
5 years, 5 months ago (2015-07-20 20:59:01 UTC) #66
Message was sent while issue was closed.
Patchset 10 (id:??) landed as
https://crrev.com/8acc4eb18b6919f36413a10718a607f2a34fb8f6
Cr-Commit-Position: refs/heads/master@{#339512}

Powered by Google App Engine
This is Rietveld 408576698