Home | History | Annotate | Download | only in diagnostics
      1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef CHROME_BROWSER_DIAGNOSTICS_DIAGNOSTICS_MAIN_H_
      6 #define CHROME_BROWSER_DIAGNOSTICS_DIAGNOSTICS_MAIN_H_
      7 #pragma once
      8 
      9 class CommandLine;
     10 
     11 // Entry point for the diagnostics mode. Most of the initialization that you
     12 // can see in ChromeMain() will be repeated here or will be done differently.
     13 int DiagnosticsMain(const CommandLine& command_line);
     14 
     15 
     16 #endif  // CHROME_BROWSER_DIAGNOSTICS_DIAGNOSTICS_MAIN_H_
     17