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

Side by Side Diff: content/renderer/renderer_webidbcursor_impl.h

Issue 6713024: Move the renderer_web* files to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_RENDERER_RENDERER_WEBIDBCURSOR_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDERER_WEBIDBCURSOR_IMPL_H_
6 #define CHROME_RENDERER_RENDERER_WEBIDBCURSOR_IMPL_H_ 6 #define CONTENT_RENDERER_RENDERER_WEBIDBCURSOR_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "content/common/indexed_db_key.h" 9 #include "content/common/indexed_db_key.h"
10 #include "content/common/serialized_script_value.h" 10 #include "content/common/serialized_script_value.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h" 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCursor.h" 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCursor.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h" 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h"
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSerializedScriptVa lue.h" 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSerializedScriptVa lue.h"
15 15
16 class RendererWebIDBCursorImpl : public WebKit::WebIDBCursor { 16 class RendererWebIDBCursorImpl : public WebKit::WebIDBCursor {
(...skipping 12 matching lines...) Expand all
29 virtual void continueFunction(const WebKit::WebIDBKey& key, 29 virtual void continueFunction(const WebKit::WebIDBKey& key,
30 WebKit::WebIDBCallbacks* callback, 30 WebKit::WebIDBCallbacks* callback,
31 WebKit::WebExceptionCode& ec); 31 WebKit::WebExceptionCode& ec);
32 virtual void remove(WebKit::WebIDBCallbacks* callback, 32 virtual void remove(WebKit::WebIDBCallbacks* callback,
33 WebKit::WebExceptionCode& ec); 33 WebKit::WebExceptionCode& ec);
34 34
35 private: 35 private:
36 int32 idb_cursor_id_; 36 int32 idb_cursor_id_;
37 }; 37 };
38 38
39 #endif // CHROME_RENDERER_RENDERER_WEBIDBCURSOR_IMPL_H_ 39 #endif // CONTENT_RENDERER_RENDERER_WEBIDBCURSOR_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/renderer_webcookiejar_impl.cc ('k') | content/renderer/renderer_webidbcursor_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698