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

Side by Side Diff: content/renderer/indexed_db/renderer_webidbindex_impl.h

Issue 8980002: Move indexeddb code to its own directory inside of content/{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CONTENT_RENDERER_RENDERER_WEBIDBINDEX_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDERER_WEBIDBINDEX_IMPL_H_
6 #define CONTENT_RENDERER_RENDERER_WEBIDBINDEX_IMPL_H_ 6 #define CONTENT_RENDERER_RENDERER_WEBIDBINDEX_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h" 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 virtual void getKey(const WebKit::WebIDBKey& key, 42 virtual void getKey(const WebKit::WebIDBKey& key,
43 WebKit::WebIDBCallbacks* callbacks, 43 WebKit::WebIDBCallbacks* callbacks,
44 const WebKit::WebIDBTransaction& transaction, 44 const WebKit::WebIDBTransaction& transaction,
45 WebKit::WebExceptionCode& ec); 45 WebKit::WebExceptionCode& ec);
46 46
47 private: 47 private:
48 int32 idb_index_id_; 48 int32 idb_index_id_;
49 }; 49 };
50 50
51 #endif // CONTENT_RENDERER_RENDERER_WEBIDBINDEX_IMPL_H_ 51 #endif // CONTENT_RENDERER_RENDERER_WEBIDBINDEX_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698