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

Unified Diff: chrome/browser/extensions/extension_clear_api_constants.h

Issue 7551008: Strawman proposal for chrome.experimental.clear.* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: License presubmit check. :( Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_clear_api_constants.h
diff --git a/chrome/browser/extensions/extension_clear_api_constants.h b/chrome/browser/extensions/extension_clear_api_constants.h
new file mode 100644
index 0000000000000000000000000000000000000000..b405556dc10852a89d844c8e6ea7e4599cf0465e
--- /dev/null
+++ b/chrome/browser/extensions/extension_clear_api_constants.h
@@ -0,0 +1,33 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Constants used for the Cookies API.
+
+#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_CLEAR_API_CONSTANTS_H_
+#define CHROME_BROWSER_EXTENSIONS_EXTENSION_CLEAR_API_CONSTANTS_H_
+#pragma once
+
+namespace extension_clear_api_constants {
+
+// Keys.
+extern const char kCacheKey[];
+extern const char kCookiesKey[];
+extern const char kDownloadsKey[];
+extern const char kFormDataKey[];
+extern const char kHistoryKey[];
+extern const char kPasswordsKey[];
+
+// Timeframe "enum" values.
+extern const char kHourEnum[];
+extern const char kDayEnum[];
+extern const char kWeekEnum[];
+extern const char kMonthEnum[];
+extern const char kEverythingEnum[];
+
+// Errors!
+extern const char kOneAtATimeError[];
+
+} // namespace extension_clear_api_constants
+
+#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_CLEAR_API_CONSTANTS_H_
« no previous file with comments | « chrome/browser/extensions/extension_clear_api.cc ('k') | chrome/browser/extensions/extension_clear_api_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698