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

Unified Diff: chrome/browser/resources/flags.html

Issue 3777005: Rename about:labs to about:flags, part 3/3 (Closed)
Patch Set: comments Created 10 years, 2 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
« no previous file with comments | « chrome/browser/profile_impl.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/flags.html
diff --git a/chrome/browser/resources/flags.html b/chrome/browser/resources/flags.html
index 92d43a7cbbd25b412a8dca73640a4e69afebf5fe..9798c82bc4160fd8daf509d9e88771e78a7c2a82 100644
--- a/chrome/browser/resources/flags.html
+++ b/chrome/browser/resources/flags.html
@@ -196,8 +196,8 @@ function renderTemplate(flagsExperimentsData) {
}
/**
- * Asks the C++ LabsDOMHandler to get details about the available experiments
- * and return detailed data about the configuration. The LabsDOMHandler
+ * Asks the C++ FlagsDOMHandler to get details about the available experiments
+ * and return detailed data about the configuration. The FlagsDOMHandler
* should reply to returnFlagsExperiments() (below).
*/
function requestFlagsExperimentsData() {
@@ -205,7 +205,7 @@ function requestFlagsExperimentsData() {
}
/**
- * Asks the C++ LabsDOMHandler to restart the browser (restoring tabs).
+ * Asks the C++ FlagsDOMHandler to restart the browser (restoring tabs).
*/
function restartBrowser() {
chrome.send('restartBrowser', []);
@@ -225,7 +225,7 @@ function returnFlagsExperiments(flagsExperimentsData){
* Handles a 'enable' or 'disable' button getting clicked.
*/
function handleEnableExperiment(node, enable) {
- // Tell the C++ LabsDOMHandler to enable/disable the experiment.
+ // Tell the C++ FlagsDOMHandler to enable/disable the experiment.
chrome.send('enableFlagsExperiment', [String(node.internal_name),
String(enable)]);
requestFlagsExperimentsData();
« no previous file with comments | « chrome/browser/profile_impl.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698