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

Side by Side Diff: content/common/appcache_interfaces.h

Issue 2646033003: DevTools: streamline console logging levels, migrate 'log' to 'info' level, 'debug' to 'verbose' le… (Closed)
Patch Set: missing rebaseline Created 3 years, 11 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_COMMON_APPCACHE_INTERFACES_H_ 5 #ifndef CONTENT_COMMON_APPCACHE_INTERFACES_H_
6 #define CONTENT_COMMON_APPCACHE_INTERFACES_H_ 6 #define CONTENT_COMMON_APPCACHE_INTERFACES_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 17 matching lines...) Expand all
28 APPCACHE_DOWNLOADING_EVENT, 28 APPCACHE_DOWNLOADING_EVENT,
29 APPCACHE_PROGRESS_EVENT, 29 APPCACHE_PROGRESS_EVENT,
30 APPCACHE_UPDATE_READY_EVENT, 30 APPCACHE_UPDATE_READY_EVENT,
31 APPCACHE_CACHED_EVENT, 31 APPCACHE_CACHED_EVENT,
32 APPCACHE_OBSOLETE_EVENT, 32 APPCACHE_OBSOLETE_EVENT,
33 APPCACHE_EVENT_ID_LAST = APPCACHE_OBSOLETE_EVENT 33 APPCACHE_EVENT_ID_LAST = APPCACHE_OBSOLETE_EVENT
34 }; 34 };
35 35
36 // Temporarily renumber them in wierd way, to help remove LOG_TIP from WebKit 36 // Temporarily renumber them in wierd way, to help remove LOG_TIP from WebKit
37 enum AppCacheLogLevel { 37 enum AppCacheLogLevel {
38 APPCACHE_LOG_DEBUG = 4, 38 APPCACHE_LOG_VERBOSE,
39 APPCACHE_LOG_INFO = 1, 39 APPCACHE_LOG_INFO,
40 APPCACHE_LOG_WARNING = 2, 40 APPCACHE_LOG_WARNING,
41 APPCACHE_LOG_ERROR = 3, 41 APPCACHE_LOG_ERROR
42 }; 42 };
43 43
44 enum AppCacheNamespaceType { 44 enum AppCacheNamespaceType {
45 APPCACHE_FALLBACK_NAMESPACE, 45 APPCACHE_FALLBACK_NAMESPACE,
46 APPCACHE_INTERCEPT_NAMESPACE, 46 APPCACHE_INTERCEPT_NAMESPACE,
47 APPCACHE_NETWORK_NAMESPACE 47 APPCACHE_NETWORK_NAMESPACE
48 }; 48 };
49 49
50 enum AppCacheErrorReason { 50 enum AppCacheErrorReason {
51 APPCACHE_MANIFEST_ERROR, 51 APPCACHE_MANIFEST_ERROR,
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 const std::string& method); 175 const std::string& method);
176 CONTENT_EXPORT bool IsSchemeAndMethodSupportedForAppCache( 176 CONTENT_EXPORT bool IsSchemeAndMethodSupportedForAppCache(
177 const net::URLRequest* request); 177 const net::URLRequest* request);
178 178
179 CONTENT_EXPORT extern const base::FilePath::CharType 179 CONTENT_EXPORT extern const base::FilePath::CharType
180 kAppCacheDatabaseName[]; 180 kAppCacheDatabaseName[];
181 181
182 } // namespace 182 } // namespace
183 183
184 #endif // CONTENT_COMMON_APPCACHE_INTERFACES_H_ 184 #endif // CONTENT_COMMON_APPCACHE_INTERFACES_H_
OLDNEW
« no previous file with comments | « content/child/appcache/appcache_frontend_impl.cc ('k') | content/public/common/console_message_level.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698