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

Side by Side Diff: Source/modules/indexeddb/IDBFactory.cpp

Issue 68093002: Remove duplicated headers from modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « Source/modules/indexeddb/IDBDatabase.cpp ('k') | Source/modules/indexeddb/IDBIndex.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 21 matching lines...) Expand all
32 #include "bindings/v8/ExceptionMessages.h" 32 #include "bindings/v8/ExceptionMessages.h"
33 #include "bindings/v8/ExceptionState.h" 33 #include "bindings/v8/ExceptionState.h"
34 #include "bindings/v8/IDBBindingUtilities.h" 34 #include "bindings/v8/IDBBindingUtilities.h"
35 #include "core/dom/Document.h" 35 #include "core/dom/Document.h"
36 #include "core/dom/ExceptionCode.h" 36 #include "core/dom/ExceptionCode.h"
37 #include "modules/indexeddb/IDBDatabase.h" 37 #include "modules/indexeddb/IDBDatabase.h"
38 #include "modules/indexeddb/IDBDatabaseCallbacksImpl.h" 38 #include "modules/indexeddb/IDBDatabaseCallbacksImpl.h"
39 #include "modules/indexeddb/IDBFactoryBackendInterface.h" 39 #include "modules/indexeddb/IDBFactoryBackendInterface.h"
40 #include "modules/indexeddb/IDBHistograms.h" 40 #include "modules/indexeddb/IDBHistograms.h"
41 #include "modules/indexeddb/IDBKey.h" 41 #include "modules/indexeddb/IDBKey.h"
42 #include "modules/indexeddb/IDBOpenDBRequest.h"
43 #include "modules/indexeddb/IDBTracing.h" 42 #include "modules/indexeddb/IDBTracing.h"
44 #include "public/platform/Platform.h" 43 #include "public/platform/Platform.h"
45 #include "weborigin/DatabaseIdentifier.h" 44 #include "weborigin/DatabaseIdentifier.h"
46 #include "weborigin/SecurityOrigin.h" 45 #include "weborigin/SecurityOrigin.h"
47 46
48 namespace WebCore { 47 namespace WebCore {
49 48
50 IDBFactory::IDBFactory(IDBFactoryBackendInterface* factory) 49 IDBFactory::IDBFactory(IDBFactoryBackendInterface* factory)
51 : m_backend(factory) 50 : m_backend(factory)
52 { 51 {
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 152
154 if (!first->isValid() || !second->isValid()) { 153 if (!first->isValid() || !second->isValid()) {
155 es.throwDOMException(DataError, IDBDatabase::notValidKeyErrorMessage); 154 es.throwDOMException(DataError, IDBDatabase::notValidKeyErrorMessage);
156 return 0; 155 return 0;
157 } 156 }
158 157
159 return static_cast<short>(first->compare(second.get())); 158 return static_cast<short>(first->compare(second.get()));
160 } 159 }
161 160
162 } // namespace WebCore 161 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/modules/indexeddb/IDBDatabase.cpp ('k') | Source/modules/indexeddb/IDBIndex.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698