diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-13 21:51:42 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-13 21:51:42 +0000 |
commit | 37666cf5cff20be16e5636654d3a751f26e31122 (patch) | |
tree | 2fbfe6996da69be9d3bdb4c42be853dd0b497b5b /chrome/common/database_util.h | |
parent | ce557b68925e65ba5a705f9fce60d062df68bf40 (diff) | |
download | chromium_src-37666cf5cff20be16e5636654d3a751f26e31122.zip chromium_src-37666cf5cff20be16e5636654d3a751f26e31122.tar.gz chromium_src-37666cf5cff20be16e5636654d3a751f26e31122.tar.bz2 |
Move database files from chrome\commmon to content\common, in preparation for moving the worker code.
TBR=avi
Review URL: http://codereview.chromium.org/6683034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77975 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/database_util.h')
-rw-r--r-- | chrome/common/database_util.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/chrome/common/database_util.h b/chrome/common/database_util.h deleted file mode 100644 index b297044..0000000 --- a/chrome/common/database_util.h +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2010 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 CHROME_COMMON_DATABASE_UTIL_H_ -#define CHROME_COMMON_DATABASE_UTIL_H_ -#pragma once - -#include "webkit/glue/webkitclient_impl.h" - -// A class of utility functions used by RendererWebKitClientImpl and -// WorkerWebKitClientImpl to handle database file accesses. -class DatabaseUtil { - public: - static WebKit::WebKitClient::FileHandle databaseOpenFile( - const WebKit::WebString& vfs_file_name, int desired_flags); - static int databaseDeleteFile(const WebKit::WebString& vfs_file_name, - bool sync_dir); - static long databaseGetFileAttributes(const WebKit::WebString& vfs_file_name); - static long long databaseGetFileSize(const WebKit::WebString& vfs_file_name); -}; - -#endif // CHROME_COMMON_DATABASE_UTIL_H_ |