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

Unified Diff: storage/browser/blob/scoped_file.h

Issue 810403004: [Storage] Blob Storage Refactoring pt 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed copyright Created 5 years, 11 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: storage/browser/blob/scoped_file.h
diff --git a/storage/common/blob/scoped_file.h b/storage/browser/blob/scoped_file.h
similarity index 92%
rename from storage/common/blob/scoped_file.h
rename to storage/browser/blob/scoped_file.h
index 4a51a465ce3d81cf53f7e412d3e00540cdcb425a..a8fd730efce6301d8b931d5361c6c3c0b9681703 100644
--- a/storage/common/blob/scoped_file.h
+++ b/storage/browser/blob/scoped_file.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef STORAGE_COMMON_BLOB_SCOPED_FILE_H_
-#define STORAGE_COMMON_BLOB_SCOPED_FILE_H_
+#ifndef STORAGE_BROWSER_BLOB_SCOPED_FILE_H_
+#define STORAGE_BROWSER_BLOB_SCOPED_FILE_H_
#include <map>
@@ -11,7 +11,7 @@
#include "base/files/file_path.h"
#include "base/memory/ref_counted.h"
#include "base/move.h"
-#include "storage/common/storage_common_export.h"
+#include "storage/browser/storage_browser_export.h"
namespace base {
class TaskRunner;
@@ -26,7 +26,7 @@ namespace storage {
//
// TODO(kinuko): Probably this can be moved under base or somewhere more
// common place.
-class STORAGE_COMMON_EXPORT ScopedFile {
+class STORAGE_EXPORT ScopedFile {
// To support destructive assignment from an l-value assignment.
// This provides Pass() method which creates an r-value for the current
// instance. (See base/move.h for details)
@@ -91,4 +91,4 @@ class STORAGE_COMMON_EXPORT ScopedFile {
} // namespace storage
-#endif // STORAGE_COMMON_BLOB_SCOPED_FILE_H_
+#endif // STORAGE_BROWSER_BLOB_SCOPED_FILE_H_

Powered by Google App Engine
This is Rietveld 408576698