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

Side by Side Diff: content/content_browser.gypi

Issue 932143003: IndexedDB: Report QuotaExceededError when commit fails due to disk full (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move IndexedDBDatabaseError impl to cc file Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base_static', 7 '../base/base.gyp:base_static',
8 '../crypto/crypto.gyp:crypto', 8 '../crypto/crypto.gyp:crypto',
9 '../device/vibration/vibration.gyp:device_vibration', 9 '../device/vibration/vibration.gyp:device_vibration',
10 '../device/vibration/vibration.gyp:device_vibration_mojo_bindings', 10 '../device/vibration/vibration.gyp:device_vibration_mojo_bindings',
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 'browser/indexed_db/indexed_db_connection.cc', 817 'browser/indexed_db/indexed_db_connection.cc',
818 'browser/indexed_db/indexed_db_connection.h', 818 'browser/indexed_db/indexed_db_connection.h',
819 'browser/indexed_db/indexed_db_context_impl.cc', 819 'browser/indexed_db/indexed_db_context_impl.cc',
820 'browser/indexed_db/indexed_db_context_impl.h', 820 'browser/indexed_db/indexed_db_context_impl.h',
821 'browser/indexed_db/indexed_db_cursor.cc', 821 'browser/indexed_db/indexed_db_cursor.cc',
822 'browser/indexed_db/indexed_db_cursor.h', 822 'browser/indexed_db/indexed_db_cursor.h',
823 'browser/indexed_db/indexed_db_database.cc', 823 'browser/indexed_db/indexed_db_database.cc',
824 'browser/indexed_db/indexed_db_database.h', 824 'browser/indexed_db/indexed_db_database.h',
825 'browser/indexed_db/indexed_db_database_callbacks.cc', 825 'browser/indexed_db/indexed_db_database_callbacks.cc',
826 'browser/indexed_db/indexed_db_database_callbacks.h', 826 'browser/indexed_db/indexed_db_database_callbacks.h',
827 'browser/indexed_db/indexed_db_database_error.cc',
827 'browser/indexed_db/indexed_db_database_error.h', 828 'browser/indexed_db/indexed_db_database_error.h',
828 'browser/indexed_db/indexed_db_dispatcher_host.cc', 829 'browser/indexed_db/indexed_db_dispatcher_host.cc',
829 'browser/indexed_db/indexed_db_dispatcher_host.h', 830 'browser/indexed_db/indexed_db_dispatcher_host.h',
830 'browser/indexed_db/indexed_db_factory.h', 831 'browser/indexed_db/indexed_db_factory.h',
831 'browser/indexed_db/indexed_db_factory_impl.cc', 832 'browser/indexed_db/indexed_db_factory_impl.cc',
832 'browser/indexed_db/indexed_db_factory_impl.h', 833 'browser/indexed_db/indexed_db_factory_impl.h',
833 'browser/indexed_db/indexed_db_index_writer.cc', 834 'browser/indexed_db/indexed_db_index_writer.cc',
834 'browser/indexed_db/indexed_db_index_writer.h', 835 'browser/indexed_db/indexed_db_index_writer.h',
835 'browser/indexed_db/indexed_db_internals_ui.cc', 836 'browser/indexed_db/indexed_db_internals_ui.cc',
836 'browser/indexed_db/indexed_db_internals_ui.h', 837 'browser/indexed_db/indexed_db_internals_ui.h',
(...skipping 1134 matching lines...) Expand 10 before | Expand all | Expand 10 after
1971 'browser/media/media_web_contents_observer.h', 1972 'browser/media/media_web_contents_observer.h',
1972 ], 1973 ],
1973 }], 1974 }],
1974 ['OS == "linux" and use_openssl==1', { 1975 ['OS == "linux" and use_openssl==1', {
1975 'dependencies': [ 1976 'dependencies': [
1976 '../third_party/boringssl/boringssl.gyp:boringssl', 1977 '../third_party/boringssl/boringssl.gyp:boringssl',
1977 ], 1978 ],
1978 }], 1979 }],
1979 ], 1980 ],
1980 } 1981 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698