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

Side by Side Diff: chrome/common/pref_names.cc

Issue 2846363002: Clipboard Android - Store and Read Last Modified Time from Prefs (Closed)
Patch Set: Created 3 years, 7 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 | « chrome/common/pref_names.h ('k') | ui/base/clipboard/clipboard_android.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/common/features.h" 9 #include "chrome/common/features.h"
10 #include "chrome/common/pref_font_webkit_names.h" 10 #include "chrome/common/pref_font_webkit_names.h"
(...skipping 2514 matching lines...) Expand 10 before | Expand all | Expand 10 after
2525 // current prompt wave asking the user if they want to restore their startup 2525 // current prompt wave asking the user if they want to restore their startup
2526 // settings. 2526 // settings.
2527 const char kSettingsResetPromptLastTriggeredForStartupUrls[] = 2527 const char kSettingsResetPromptLastTriggeredForStartupUrls[] =
2528 "settings_reset_prompt.last_triggered_for_startup_urls"; 2528 "settings_reset_prompt.last_triggered_for_startup_urls";
2529 2529
2530 // Timestamp of the last time the settings reset prompt was shown during the 2530 // Timestamp of the last time the settings reset prompt was shown during the
2531 // current prompt wave asking the user if they want to restore their homepage. 2531 // current prompt wave asking the user if they want to restore their homepage.
2532 const char kSettingsResetPromptLastTriggeredForHomepage[] = 2532 const char kSettingsResetPromptLastTriggeredForHomepage[] =
2533 "settings_reset_prompt.last_triggered_for_homepage"; 2533 "settings_reset_prompt.last_triggered_for_homepage";
2534 2534
2535 #if defined(OS_ANDROID)
2536 // Timestamp of the clipboard's last modified time, stored in base::Time's
2537 // internal format (int64) in local store. (I.e., this is not a per-profile
2538 // pref.)
2539 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time";
2540 #endif
2541
2535 } // namespace prefs 2542 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | ui/base/clipboard/clipboard_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698