diff options
author | andreip@chromium.org <andreip@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-30 11:48:53 +0000 |
---|---|---|
committer | andreip@chromium.org <andreip@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-30 11:48:53 +0000 |
commit | 5f2faeab17c40d1ee10ad1e94140369213992968 (patch) | |
tree | 8d7f1e741bb321760b044cdb37f9551233affb30 /chrome/renderer/renderer_webidbfactory_impl.h | |
parent | 7ef8f601e23f8a471f0614479731a774f618e533 (diff) | |
download | chromium_src-5f2faeab17c40d1ee10ad1e94140369213992968.zip chromium_src-5f2faeab17c40d1ee10ad1e94140369213992968.tar.gz chromium_src-5f2faeab17c40d1ee10ad1e94140369213992968.tar.bz2 |
Fix build break by updating the test shell and renaming renderer_webindexeddatabase* files
Review URL: http://codereview.chromium.org/3078011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54307 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/renderer_webidbfactory_impl.h')
-rw-r--r-- | chrome/renderer/renderer_webidbfactory_impl.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/chrome/renderer/renderer_webidbfactory_impl.h b/chrome/renderer/renderer_webidbfactory_impl.h new file mode 100644 index 0000000..de71220 --- /dev/null +++ b/chrome/renderer/renderer_webidbfactory_impl.h @@ -0,0 +1,32 @@ +// 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_RENDERER_RENDERER_WEBIDBFACTORY_IMPL_H_ +#define CHROME_RENDERER_RENDERER_WEBIDBFACTORY_IMPL_H_ +#pragma once + +#include "third_party/WebKit/WebKit/chromium/public/WebIDBCallbacks.h" +#include "third_party/WebKit/WebKit/chromium/public/WebIDBFactory.h" + +namespace WebKit { +class WebDOMStringList; +class WebFrame; +class WebIDBDatabase; +class WebSecurityOrigin; +class WebString; +} + +class RendererWebIDBFactoryImpl : public WebKit::WebIDBFactory { + public: + RendererWebIDBFactoryImpl(); + virtual ~RendererWebIDBFactoryImpl(); + + // See WebIDBFactory.h for documentation on these functions. + virtual void open( + const WebKit::WebString& name, const WebKit::WebString& description, + WebKit::WebIDBCallbacks* callbacks, + const WebKit::WebSecurityOrigin& origin, WebKit::WebFrame* web_frame); +}; + +#endif // CHROME_RENDERER_RENDERER_WEBIDBFACTORY_IMPL_H_ |