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

Unified Diff: ui/file_manager/zip_archiver/unpacker/cpp/javascript_requestor_interface.h

Issue 2804453002: Move files from zip_archiver/unpacker/ to zip_archiver/. (Closed)
Patch Set: Move files from zip_archiver/unpacker/ to zip_archiver/. Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: ui/file_manager/zip_archiver/unpacker/cpp/javascript_requestor_interface.h
diff --git a/ui/file_manager/zip_archiver/unpacker/cpp/javascript_requestor_interface.h b/ui/file_manager/zip_archiver/unpacker/cpp/javascript_requestor_interface.h
deleted file mode 100644
index ce8e92cc97dee39d33b6505826741180b4103d73..0000000000000000000000000000000000000000
--- a/ui/file_manager/zip_archiver/unpacker/cpp/javascript_requestor_interface.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2014 The Chromium OS Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef JAVASCRIPT_REQUESTOR_INTERFACE_H_
-#define JAVASCRIPT_REQUESTOR_INTERFACE_H_
-
-#include <string>
-
-// Makes requests to JavaScript. Requests are asynchronous and responses must be
-// handled by other classes. This class stricly makes requests.
-class JavaScriptRequestorInterface {
- public:
- virtual ~JavaScriptRequestorInterface() {}
-
- // Request a file chunk from JavaScript. The request is asynchronous.
- // offset must be >= 0 and bytes_to_read > 0.
- virtual void RequestFileChunk(const std::string& request_id,
- int64_t offset,
- int64_t bytes_to_read) = 0;
-
- // Request a passphrase from JavaScript. The request is asynchronous.
- virtual void RequestPassphrase(const std::string& request_id) = 0;
-};
-
-#endif // JAVASCRIPT_REQUESTOR_INTERFACE_H_

Powered by Google App Engine
This is Rietveld 408576698