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

Unified Diff: content/browser/indexed_db/indexed_db_blob_info.h

Issue 475063004: IndexedDB + Coding Style: re-order enums/typedefs/... to match guide (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Restore CONTENT_EXPORT to Transaction 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
Index: content/browser/indexed_db/indexed_db_blob_info.h
diff --git a/content/browser/indexed_db/indexed_db_blob_info.h b/content/browser/indexed_db/indexed_db_blob_info.h
index a2ac99149fc7725862ab697b4831b6da610fb4a6..ee2f0e9624629c4874f9eab3d871f97b7f3ad585 100644
--- a/content/browser/indexed_db/indexed_db_blob_info.h
+++ b/content/browser/indexed_db/indexed_db_blob_info.h
@@ -20,7 +20,6 @@ class CONTENT_EXPORT IndexedDBBlobInfo {
typedef webkit_blob::ShareableFileReference::FinalReleaseCallback
ReleaseCallback;
IndexedDBBlobInfo();
- ~IndexedDBBlobInfo();
// These two are used for Blobs.
IndexedDBBlobInfo(const std::string& uuid,
const base::string16& type,
@@ -35,6 +34,8 @@ class CONTENT_EXPORT IndexedDBBlobInfo {
const base::string16& type,
const base::string16& file_name);
+ ~IndexedDBBlobInfo();
cmumford 2014/08/20 19:43:05 Should this be reordered in the *.cc file too?
jsbell 2014/08/22 20:50:01 Done.
+
bool is_file() const { return is_file_; }
const std::string& uuid() const { return uuid_; }
const base::string16& type() const { return type_; }

Powered by Google App Engine
This is Rietveld 408576698