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

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

Issue 1077007: Add the option of importing bookmarks from file to first run.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 9 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) 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/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 // Will also force the port of the resulting 390 // Will also force the port of the resulting
391 // socket address to be 77. 391 // socket address to be 77.
392 // "MAP * baz, EXCLUDE www.google.com" --> Remaps everything to "baz", 392 // "MAP * baz, EXCLUDE www.google.com" --> Remaps everything to "baz",
393 // except for "www.google.com". 393 // except for "www.google.com".
394 const char kHostResolverRules[] = "host-resolver-rules"; 394 const char kHostResolverRules[] = "host-resolver-rules";
395 395
396 // Perform importing from another browser. The value associated with this 396 // Perform importing from another browser. The value associated with this
397 // setting encodes the target browser and what items to import. 397 // setting encodes the target browser and what items to import.
398 const char kImport[] = "import"; 398 const char kImport[] = "import";
399 399
400 // Perform bookmark importing from an HTML file. The value associated with this
401 // setting encodes the file path. It may be used jointly with kImport.
402 const char kImportFromFile[] = "import-from-file";
403
400 // Runs plugins inside the renderer process 404 // Runs plugins inside the renderer process
401 const char kInProcessPlugins[] = "in-process-plugins"; 405 const char kInProcessPlugins[] = "in-process-plugins";
402 406
403 // Causes the browser to launch directly in incognito mode. 407 // Causes the browser to launch directly in incognito mode.
404 const char kIncognito[] = "incognito"; 408 const char kIncognito[] = "incognito";
405 409
406 // Runs the Native Client inside the renderer process. 410 // Runs the Native Client inside the renderer process.
407 const char kInternalNaCl[] = "internal-nacl"; 411 const char kInternalNaCl[] = "internal-nacl";
408 412
409 // Runs a trusted Pepper plugin inside the renderer process. 413 // Runs a trusted Pepper plugin inside the renderer process.
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 851
848 // ----------------------------------------------------------------------------- 852 // -----------------------------------------------------------------------------
849 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 853 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
850 // 854 //
851 // You were going to just dump your switches here, weren't you? Instead, 855 // You were going to just dump your switches here, weren't you? Instead,
852 // please put them in alphabetical order above, or in order inside the 856 // please put them in alphabetical order above, or in order inside the
853 // appropriate ifdef at the bottom. The order should match the header. 857 // appropriate ifdef at the bottom. The order should match the header.
854 // ----------------------------------------------------------------------------- 858 // -----------------------------------------------------------------------------
855 859
856 } // namespace switches 860 } // namespace switches
OLDNEW
« chrome/browser/first_run_win.cc ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698