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

Side by Side Diff: third_party/WebKit/Source/modules/filesystem/DOMFileSystemBase.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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) 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 bool waitForAdditionalResult(int callbacksId); 118 bool waitForAdditionalResult(int callbacksId);
119 119
120 DECLARE_VIRTUAL_TRACE(); 120 DECLARE_VIRTUAL_TRACE();
121 121
122 protected: 122 protected:
123 DOMFileSystemBase(ExecutionContext*, const String& name, FileSystemType, con st KURL& rootURL); 123 DOMFileSystemBase(ExecutionContext*, const String& name, FileSystemType, con st KURL& rootURL);
124 124
125 friend class DOMFileSystemBaseTest; 125 friend class DOMFileSystemBaseTest;
126 friend class DOMFileSystemSync; 126 friend class DOMFileSystemSync;
127 127
128 RawPtrWillBeMember<ExecutionContext> m_context; 128 Member<ExecutionContext> m_context;
129 String m_name; 129 String m_name;
130 FileSystemType m_type; 130 FileSystemType m_type;
131 KURL m_filesystemRootURL; 131 KURL m_filesystemRootURL;
132 bool m_clonable; 132 bool m_clonable;
133 }; 133 };
134 134
135 inline bool operator==(const DOMFileSystemBase& a, const DOMFileSystemBase& b) { return a.name() == b.name() && a.type() == b.type() && a.rootURL() == b.rootURL (); } 135 inline bool operator==(const DOMFileSystemBase& a, const DOMFileSystemBase& b) { return a.name() == b.name() && a.type() == b.type() && a.rootURL() == b.rootURL (); }
136 136
137 } // namespace blink 137 } // namespace blink
138 138
139 #endif // DOMFileSystemBase_h 139 #endif // DOMFileSystemBase_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698