| Index: webkit/common/fileapi/file_system_util.h | 
| diff --git a/webkit/common/fileapi/file_system_util.h b/webkit/common/fileapi/file_system_util.h | 
| index 1f458961248088b81cef9844dd5cadf14b081304..4da856d0f8cc8babc790a8361df4915f30638f77 100644 | 
| --- a/webkit/common/fileapi/file_system_util.h | 
| +++ b/webkit/common/fileapi/file_system_util.h | 
| @@ -15,19 +15,19 @@ | 
| #include "webkit/common/fileapi/file_system_info.h" | 
| #include "webkit/common/fileapi/file_system_types.h" | 
| #include "webkit/common/quota/quota_types.h" | 
| -#include "webkit/common/storage_export.h" | 
| +#include "webkit/common/storage_common_export.h" | 
|  | 
| class GURL; | 
|  | 
| namespace storage { | 
|  | 
| -STORAGE_EXPORT extern const char kPersistentDir[]; | 
| -STORAGE_EXPORT extern const char kTemporaryDir[]; | 
| -STORAGE_EXPORT extern const char kExternalDir[]; | 
| -STORAGE_EXPORT extern const char kIsolatedDir[]; | 
| -STORAGE_EXPORT extern const char kTestDir[]; | 
| +STORAGE_COMMON_EXPORT extern const char kPersistentDir[]; | 
| +STORAGE_COMMON_EXPORT extern const char kTemporaryDir[]; | 
| +STORAGE_COMMON_EXPORT extern const char kExternalDir[]; | 
| +STORAGE_COMMON_EXPORT extern const char kIsolatedDir[]; | 
| +STORAGE_COMMON_EXPORT extern const char kTestDir[]; | 
|  | 
| -class STORAGE_EXPORT VirtualPath { | 
| +class STORAGE_COMMON_EXPORT VirtualPath { | 
| public: | 
| static const base::FilePath::CharType kRoot[]; | 
| static const base::FilePath::CharType kSeparator; | 
| @@ -69,7 +69,7 @@ class STORAGE_EXPORT VirtualPath { | 
| // Example: For a URL 'filesystem:http://foo.com/temporary/foo/bar', | 
| // |origin_url| is set to 'http://foo.com', |type| is set to | 
| // kFileSystemTypeTemporary, and |virtual_path| is set to 'foo/bar'. | 
| -STORAGE_EXPORT bool ParseFileSystemSchemeURL( | 
| +STORAGE_COMMON_EXPORT bool ParseFileSystemSchemeURL( | 
| const GURL& url, | 
| GURL* origin_url, | 
| FileSystemType* type, | 
| @@ -84,7 +84,7 @@ STORAGE_EXPORT bool ParseFileSystemSchemeURL( | 
| // returns URL without the filesystem ID. | 
| // | 
| // |type| needs to be public type as the returned URI is given to the renderer. | 
| -STORAGE_EXPORT GURL GetFileSystemRootURI(const GURL& origin_url, | 
| +STORAGE_COMMON_EXPORT GURL GetFileSystemRootURI(const GURL& origin_url, | 
| FileSystemType type); | 
|  | 
| // Returns the name for the filesystem that is specified by a pair of | 
| @@ -98,27 +98,27 @@ STORAGE_EXPORT GURL GetFileSystemRootURI(const GURL& origin_url, | 
| // Example: | 
| //   The name for a TEMPORARY filesystem of "http://www.example.com:80/" | 
| //   should look like: "http_www.example.host_80:temporary" | 
| -STORAGE_EXPORT std::string | 
| +STORAGE_COMMON_EXPORT std::string | 
| GetFileSystemName(const GURL& origin_url, FileSystemType type); | 
|  | 
| // Converts FileSystemType |type| to/from the StorageType |storage_type| that | 
| // is used for the unified quota system. | 
| // (Basically this naively maps TEMPORARY storage type to TEMPORARY filesystem | 
| // type, PERSISTENT storage type to PERSISTENT filesystem type and vice versa.) | 
| -STORAGE_EXPORT FileSystemType | 
| +STORAGE_COMMON_EXPORT FileSystemType | 
| QuotaStorageTypeToFileSystemType(storage::StorageType storage_type); | 
|  | 
| -STORAGE_EXPORT storage::StorageType | 
| +STORAGE_COMMON_EXPORT storage::StorageType | 
| FileSystemTypeToQuotaStorageType(FileSystemType type); | 
|  | 
| // Returns the string representation of the given filesystem |type|. | 
| // Returns an empty string if the |type| is invalid. | 
| -STORAGE_EXPORT std::string | 
| +STORAGE_COMMON_EXPORT std::string | 
| GetFileSystemTypeString(FileSystemType type); | 
|  | 
| // Sets type to FileSystemType enum that corresponds to the string name. | 
| // Returns false if the |type_string| is invalid. | 
| -STORAGE_EXPORT bool GetFileSystemPublicType( | 
| +STORAGE_COMMON_EXPORT bool GetFileSystemPublicType( | 
| std::string type_string, | 
| blink::WebFileSystemType* type); | 
|  | 
| @@ -130,20 +130,20 @@ STORAGE_EXPORT bool GetFileSystemPublicType( | 
| // | 
| // TODO(tzik): Replace CreateFilePath and FilePathToString in | 
| // third_party/leveldatabase/env_chromium.cc with them. | 
| -STORAGE_EXPORT std::string FilePathToString( | 
| +STORAGE_COMMON_EXPORT std::string FilePathToString( | 
| const base::FilePath& file_path); | 
|  | 
| // Decode a file path from |file_path_string|. | 
| -STORAGE_EXPORT base::FilePath StringToFilePath( | 
| +STORAGE_COMMON_EXPORT base::FilePath StringToFilePath( | 
| const std::string& file_path_string); | 
|  | 
| // File error conversion | 
| -STORAGE_EXPORT blink::WebFileError | 
| +STORAGE_COMMON_EXPORT blink::WebFileError | 
| FileErrorToWebFileError(base::File::Error error_code); | 
|  | 
| // Generate a file system name for the given arguments. Should only be used by | 
| // platform apps. | 
| -STORAGE_EXPORT std::string GetIsolatedFileSystemName( | 
| +STORAGE_COMMON_EXPORT std::string GetIsolatedFileSystemName( | 
| const GURL& origin_url, | 
| const std::string& filesystem_id); | 
|  | 
| @@ -151,30 +151,30 @@ STORAGE_EXPORT std::string GetIsolatedFileSystemName( | 
| // platform apps. This function will return false if the file system name is | 
| // not of the form {origin}:Isolated_{id}, and will also check that there is an | 
| // origin and id present. It will not check that the origin or id are valid. | 
| -STORAGE_EXPORT bool CrackIsolatedFileSystemName( | 
| +STORAGE_COMMON_EXPORT bool CrackIsolatedFileSystemName( | 
| const std::string& filesystem_name, | 
| std::string* filesystem_id); | 
|  | 
| // Validates the given isolated file system id. | 
| -STORAGE_EXPORT bool ValidateIsolatedFileSystemId( | 
| +STORAGE_COMMON_EXPORT bool ValidateIsolatedFileSystemId( | 
| const std::string& filesystem_id); | 
|  | 
| // Returns the root URI for an isolated filesystem for origin |origin_url| | 
| // and |filesystem_id|. If the |optional_root_name| is given the resulting | 
| // root URI will point to the subfolder within the isolated filesystem. | 
| -STORAGE_EXPORT std::string GetIsolatedFileSystemRootURIString( | 
| +STORAGE_COMMON_EXPORT std::string GetIsolatedFileSystemRootURIString( | 
| const GURL& origin_url, | 
| const std::string& filesystem_id, | 
| const std::string& optional_root_name); | 
|  | 
| // Returns the root URI for an external filesystem for origin |origin_url| | 
| // and |mount_name|. | 
| -STORAGE_EXPORT std::string GetExternalFileSystemRootURIString( | 
| +STORAGE_COMMON_EXPORT std::string GetExternalFileSystemRootURIString( | 
| const GURL& origin_url, | 
| const std::string& mount_name); | 
|  | 
| // Translates the net::Error to base::File::Error. | 
| -STORAGE_EXPORT base::File::Error | 
| +STORAGE_COMMON_EXPORT base::File::Error | 
| NetErrorToFileError(int error); | 
|  | 
| }  // namespace storage | 
|  |