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

Unified Diff: webkit/fileapi/media/picasa/pmp_table_reader.h

Issue 14247034: Move Media Galleries FileAPI code out of webkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cr-14352004
Patch Set: Add android ifdef. Created 7 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
« no previous file with comments | « webkit/fileapi/media/picasa/pmp_constants.h ('k') | webkit/fileapi/media/picasa/pmp_table_reader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/media/picasa/pmp_table_reader.h
diff --git a/webkit/fileapi/media/picasa/pmp_table_reader.h b/webkit/fileapi/media/picasa/pmp_table_reader.h
deleted file mode 100644
index de2627f5bf6290ea6496fe00779bf75cca6301f9..0000000000000000000000000000000000000000
--- a/webkit/fileapi/media/picasa/pmp_table_reader.h
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2013 The Chromium 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 WEBKIT_FILEAPI_MEDIA_PICASA_PMP_TABLE_READER_H_
-#define WEBKIT_FILEAPI_MEDIA_PICASA_PMP_TABLE_READER_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "base/memory/scoped_vector.h"
-#include "webkit/storage/webkit_storage_export.h"
-
-namespace base {
-class FilePath;
-}
-
-namespace picasaimport {
-
-class PmpColumnReader;
-
-class WEBKIT_STORAGE_EXPORT_PRIVATE PmpTableReader {
- public:
- PmpTableReader();
-
- virtual ~PmpTableReader();
-
- // |columns| parameter will define, in-order, the columns returned by
- // subsequent columns to GetColumns() if Init() succeeds.
- bool Init(const std::string& table_name,
- const base::FilePath& directory_path,
- const std::vector<std::string>& columns);
-
- // Returns a const "view" of the current contents of |column_readers_|.
- std::vector<const PmpColumnReader*> GetColumns() const;
-
- uint32 RowCount() const;
-
- private:
- ScopedVector<PmpColumnReader> column_readers_;
- uint32 max_row_count_;
-
- DISALLOW_COPY_AND_ASSIGN(PmpTableReader);
-};
-
-} // namespace picasaimport
-
-#endif // WEBKIT_FILEAPI_MEDIA_PICASA_PMP_TABLE_READER_H_
« no previous file with comments | « webkit/fileapi/media/picasa/pmp_constants.h ('k') | webkit/fileapi/media/picasa/pmp_table_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698