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

Side by Side Diff: Source/modules/indexeddb/WebIDBCallbacksImpl.h

Issue 651503002: Clean up forward declarations in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add include file back Created 6 years, 2 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 10 *
(...skipping 24 matching lines...) Expand all
35 #include "wtf/RefPtr.h" 35 #include "wtf/RefPtr.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class IDBRequest; 39 class IDBRequest;
40 class WebBlobInfo; 40 class WebBlobInfo;
41 class WebData; 41 class WebData;
42 class WebIDBCursor; 42 class WebIDBCursor;
43 class WebIDBDatabase; 43 class WebIDBDatabase;
44 class WebIDBDatabaseError; 44 class WebIDBDatabaseError;
45 class WebIDBIndex;
jsbell 2014/10/13 18:43:22 Can you remove this from WebIDBCallbackImpl.cpp as
46 class WebIDBKey; 45 class WebIDBKey;
47 class WebIDBKeyPath; 46 class WebIDBKeyPath;
48 struct WebIDBMetadata; 47 struct WebIDBMetadata;
49 48
50 class WebIDBCallbacksImpl final : public WebIDBCallbacks { 49 class WebIDBCallbacksImpl final : public WebIDBCallbacks {
51 public: 50 public:
52 static PassOwnPtr<WebIDBCallbacksImpl> create(IDBRequest*); 51 static PassOwnPtr<WebIDBCallbacksImpl> create(IDBRequest*);
53 52
54 virtual ~WebIDBCallbacksImpl(); 53 virtual ~WebIDBCallbacksImpl();
55 54
(...skipping 14 matching lines...) Expand all
70 private: 69 private:
71 explicit WebIDBCallbacksImpl(IDBRequest*); 70 explicit WebIDBCallbacksImpl(IDBRequest*);
72 71
73 Persistent<IDBRequest> m_request; 72 Persistent<IDBRequest> m_request;
74 int m_asyncOperationId; 73 int m_asyncOperationId;
75 }; 74 };
76 75
77 } // namespace blink 76 } // namespace blink
78 77
79 #endif // WebIDBCallbacksImpl_h 78 #endif // WebIDBCallbacksImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698