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

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

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « Source/modules/indexeddb/IDBFactory.h ('k') | Source/modules/indexeddb/IDBObjectStore.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 18 matching lines...) Expand all
29 #include "bindings/core/v8/ScriptWrappable.h" 29 #include "bindings/core/v8/ScriptWrappable.h"
30 #include "modules/indexeddb/IDBKey.h" 30 #include "modules/indexeddb/IDBKey.h"
31 31
32 namespace blink { 32 namespace blink {
33 33
34 class ExceptionState; 34 class ExceptionState;
35 class ExecutionContext; 35 class ExecutionContext;
36 class ScriptState; 36 class ScriptState;
37 class ScriptValue; 37 class ScriptValue;
38 38
39 class IDBKeyRange FINAL : public GarbageCollected<IDBKeyRange>, public ScriptWra ppable { 39 class IDBKeyRange final : public GarbageCollected<IDBKeyRange>, public ScriptWra ppable {
40 DEFINE_WRAPPERTYPEINFO(); 40 DEFINE_WRAPPERTYPEINFO();
41 public: 41 public:
42 enum LowerBoundType { 42 enum LowerBoundType {
43 LowerBoundOpen, 43 LowerBoundOpen,
44 LowerBoundClosed 44 LowerBoundClosed
45 }; 45 };
46 enum UpperBoundType { 46 enum UpperBoundType {
47 UpperBoundOpen, 47 UpperBoundOpen,
48 UpperBoundClosed 48 UpperBoundClosed
49 }; 49 };
(...skipping 28 matching lines...) Expand all
78 78
79 Member<IDBKey> m_lower; 79 Member<IDBKey> m_lower;
80 Member<IDBKey> m_upper; 80 Member<IDBKey> m_upper;
81 LowerBoundType m_lowerType; 81 LowerBoundType m_lowerType;
82 UpperBoundType m_upperType; 82 UpperBoundType m_upperType;
83 }; 83 };
84 84
85 } // namespace blink 85 } // namespace blink
86 86
87 #endif // IDBKeyRange_h 87 #endif // IDBKeyRange_h
OLDNEW
« no previous file with comments | « Source/modules/indexeddb/IDBFactory.h ('k') | Source/modules/indexeddb/IDBObjectStore.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698