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

Side by Side Diff: chrome/common/chrome_constants.h

Issue 10275002: Add support initiating navigations/search requests in Chrome metro mode via a registered (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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 | Annotate | Revision Log
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 // A handful of resource-like constants related to the Chrome application. 5 // A handful of resource-like constants related to the Chrome application.
6 6
7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_
8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 // (oom_score_adj) used by the OomPriority Manager. 125 // (oom_score_adj) used by the OomPriority Manager.
126 extern const int kLowestRendererOomScore; 126 extern const int kLowestRendererOomScore;
127 extern const int kHighestRendererOomScore; 127 extern const int kHighestRendererOomScore;
128 #endif 128 #endif
129 129
130 #if defined(OS_WIN) 130 #if defined(OS_WIN)
131 // This is used by the PreRead experiment. 131 // This is used by the PreRead experiment.
132 extern const char kPreReadEnvironmentVariable[]; 132 extern const char kPreReadEnvironmentVariable[];
133 // Used by Metro Chrome to create the profile under a custom subdirectory. 133 // Used by Metro Chrome to create the profile under a custom subdirectory.
134 extern const wchar_t kMetroChromeUserDataSubDir[]; 134 extern const wchar_t kMetroChromeUserDataSubDir[];
135 // Used by Metro Chrome to initiate navigation and search requests.
136 extern const wchar_t kMetroNavigationAndSearchMessage[];
135 #endif 137 #endif
136 138
137 } // namespace chrome 139 } // namespace chrome
138 140
139 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 141 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698