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

Unified Diff: webkit/browser/blob/file_stream_reader.h

Issue 498273002: Rename storage-related export macros and build targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « webkit/browser/blob/blob_url_request_job_factory.h ('k') | webkit/browser/blob/local_file_stream_reader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/blob/file_stream_reader.h
diff --git a/webkit/browser/blob/file_stream_reader.h b/webkit/browser/blob/file_stream_reader.h
index faf836313c0733298e9fa1c859cda17c2c17493c..f5ab825a242ab038e2d3c140094329b949611fc2 100644
--- a/webkit/browser/blob/file_stream_reader.h
+++ b/webkit/browser/blob/file_stream_reader.h
@@ -9,7 +9,7 @@
#include "base/compiler_specific.h"
#include "base/files/file.h"
#include "net/base/completion_callback.h"
-#include "webkit/browser/webkit_storage_browser_export.h"
+#include "webkit/browser/storage_export.h"
namespace base {
class FilePath;
@@ -40,7 +40,7 @@ class FileStreamReader {
// actual modification time to see if the file has been modified, and if
// it does any succeeding read operations should fail with
// ERR_UPLOAD_FILE_CHANGED error.
- WEBKIT_STORAGE_BROWSER_EXPORT static FileStreamReader*
+ STORAGE_EXPORT static FileStreamReader*
CreateForLocalFile(base::TaskRunner* task_runner,
const base::FilePath& file_path,
int64 initial_offset,
@@ -51,14 +51,14 @@ class FileStreamReader {
// the value is non-null, the reader will check the underlying file's actual
// modification time to see if the file has been modified, and if it does any
// succeeding read operations should fail with ERR_UPLOAD_FILE_CHANGED error.
- WEBKIT_STORAGE_BROWSER_EXPORT static FileStreamReader*
+ STORAGE_EXPORT static FileStreamReader*
CreateForFileSystemFile(storage::FileSystemContext* context,
const storage::FileSystemURL& url,
int64 initial_offset,
const base::Time& expected_modification_time);
// Verify if the underlying file has not been modified.
- WEBKIT_STORAGE_BROWSER_EXPORT static bool VerifySnapshotTime(
+ STORAGE_EXPORT static bool VerifySnapshotTime(
const base::Time& expected_modification_time,
const base::File::Info& file_info);
« no previous file with comments | « webkit/browser/blob/blob_url_request_job_factory.h ('k') | webkit/browser/blob/local_file_stream_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698