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

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

Issue 1566047: First cut of Cloud Print Proxy implementation. The code is not enabled for no... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Final review changes Created 10 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/test/testing_profile.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 namespace prefs { 7 namespace prefs {
8 8
9 // *************** PROFILE PREFS *************** 9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile 10 // These are attached to the user profile
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 L"browser.web_app.create_in_quick_launch_bar"; 745 L"browser.web_app.create_in_quick_launch_bar";
746 746
747 // Dictionary that maps Geolocation network provider server URLs to 747 // Dictionary that maps Geolocation network provider server URLs to
748 // corresponding access token. 748 // corresponding access token.
749 const wchar_t kGeolocationAccessToken[] = L"geolocation.access_token"; 749 const wchar_t kGeolocationAccessToken[] = L"geolocation.access_token";
750 750
751 // Whether PasswordForms have been migrated from the WedDataService to the 751 // Whether PasswordForms have been migrated from the WedDataService to the
752 // LoginDatabase. 752 // LoginDatabase.
753 const wchar_t kLoginDatabaseMigrated[] = L"login_database.migrated"; 753 const wchar_t kLoginDatabaseMigrated[] = L"login_database.migrated";
754 754
755 // The unique id for this instance of the cloud print proxy.
756 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id";
757 // The human-readable name of the Cloud Print proxy. User-supplied.
758 const wchar_t kCloudPrintProxyName[] = L"cloud_print.proxy_name";
759 // The GAIA auth token (we may need to move it outside of prefs)
760 const wchar_t kCloudPrintAuthToken[] = L"cloud_print_auth_token";
755 } // namespace prefs 761 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/test/testing_profile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698