Searched defs:PendingOperation (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/chrome/browser/extensions/
H A Dinstall_verifier.h93 struct PendingOperation { struct in class:extensions::InstallVerifier
99 explicit PendingOperation(OperationType type);
100 ~PendingOperation();
158 std::queue<linked_ptr<PendingOperation> > operation_queue_;
H A Dinstall_verifier.cc271 InstallVerifier::PendingOperation* operation =
272 new InstallVerifier::PendingOperation(type);
275 operation_queue_.push(linked_ptr<PendingOperation>(operation));
308 InstallVerifier::PendingOperation* operation =
309 new InstallVerifier::PendingOperation(InstallVerifier::REMOVE);
312 operation_queue_.push(linked_ptr<PendingOperation>(operation));
411 InstallVerifier::PendingOperation::PendingOperation(OperationType type) function in class:extensions::InstallVerifier::PendingOperation
414 InstallVerifier::PendingOperation::~PendingOperation() {
[all...]
/external/chromium_org/content/browser/media/
H A Dwebrtc_identity_store_backend.cc144 struct PendingOperation { struct in class:content::WebRTCIdentityStoreBackend::SqlLiteStorage
145 PendingOperation(OperationType type, function in struct:content::WebRTCIdentityStoreBackend::SqlLiteStorage::PendingOperation
159 typedef ScopedVector<PendingOperation> PendingOperationList;
511 scoped_ptr<PendingOperation> operation(
512 new PendingOperation(type, origin, identity_name, identity));
/external/chromium_org/chrome/browser/net/
H A Dsqlite_server_bound_cert_store.cc79 class PendingOperation { class in class:SQLiteServerBoundCertStore::Backend
86 PendingOperation( function in class:SQLiteServerBoundCertStore::Backend::PendingOperation
104 PendingOperation::OperationType op,
120 typedef std::list<PendingOperation*> PendingOperationsList;
436 BatchOperation(PendingOperation::CERT_ADD, cert);
441 BatchOperation(PendingOperation::CERT_DELETE, cert);
445 PendingOperation::OperationType op,
453 scoped_ptr<PendingOperation> po(new PendingOperation(op, cert));
507 scoped_ptr<PendingOperation> p
[all...]
/external/chromium_org/content/browser/net/
H A Dsqlite_persistent_cookie_store.cc132 class PendingOperation { class in class:content::SQLitePersistentCookieStore::Backend
140 PendingOperation(OperationType op, const net::CanonicalCookie& cc) function in class:content::SQLitePersistentCookieStore::Backend::PendingOperation
197 void BatchOperation(PendingOperation::OperationType op,
220 typedef std::list<PendingOperation*> PendingOperationsList;
910 BatchOperation(PendingOperation::COOKIE_ADD, cc);
915 BatchOperation(PendingOperation::COOKIE_UPDATEACCESS, cc);
920 BatchOperation(PendingOperation::COOKIE_DELETE, cc);
924 PendingOperation::OperationType op,
933 scoped_ptr<PendingOperation> po(new PendingOperation(o
[all...]

Completed in 3043 milliseconds