diff options
| -rw-r--r-- | chrome/browser/diagnostics/diagnostics_main.cc | 5 | ||||
| -rw-r--r-- | chrome/browser/diagnostics/diagnostics_main.h | 9 | ||||
| -rw-r--r-- | chrome/browser/diagnostics/sqlite_diagnostics.cc | 6 | ||||
| -rw-r--r-- | chrome/browser/diagnostics/sqlite_diagnostics.h | 9 | ||||
| -rwxr-xr-x | chrome/chrome.gyp | 4 |
5 files changed, 33 insertions, 0 deletions
diff --git a/chrome/browser/diagnostics/diagnostics_main.cc b/chrome/browser/diagnostics/diagnostics_main.cc new file mode 100644 index 0000000..e7ba314 --- /dev/null +++ b/chrome/browser/diagnostics/diagnostics_main.cc @@ -0,0 +1,5 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "chrome/browser/diagnostics/diagnostics_main.h" diff --git a/chrome/browser/diagnostics/diagnostics_main.h b/chrome/browser/diagnostics/diagnostics_main.h new file mode 100644 index 0000000..4153925 --- /dev/null +++ b/chrome/browser/diagnostics/diagnostics_main.h @@ -0,0 +1,9 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CHROME_BROWSER_DIAGNOSTICS_DIAGNOSTICS_MAIN_H_ +#define CHROME_BROWSER_DIAGNOSTICS_DIAGNOSTICS_MAIN_H_ + + +#endif // CHROME_BROWSER_DIAGNOSTICS_DIAGNOSTICS_MAIN_H_ diff --git a/chrome/browser/diagnostics/sqlite_diagnostics.cc b/chrome/browser/diagnostics/sqlite_diagnostics.cc new file mode 100644 index 0000000..1f6b978 --- /dev/null +++ b/chrome/browser/diagnostics/sqlite_diagnostics.cc @@ -0,0 +1,6 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "chrome/browser/diagnostics/sqlite_diagnostics.h" + diff --git a/chrome/browser/diagnostics/sqlite_diagnostics.h b/chrome/browser/diagnostics/sqlite_diagnostics.h new file mode 100644 index 0000000..f082fe8 --- /dev/null +++ b/chrome/browser/diagnostics/sqlite_diagnostics.h @@ -0,0 +1,9 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CHROME_BROWSER_DIAGNOSTICS_SQLITE_DIAGNOSTICS_H_ +#define CHROME_BROWSER_DIAGNOSTICS_SQLITE_DIAGNOSTICS_H_ + + +#endif // CHROME_BROWSER_DIAGNOSTICS_SQLITE_DIAGNOSTICS_H_ diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index a34abd7..9afac637 100755 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -1167,6 +1167,10 @@ 'browser/cross_site_request_manager.h', 'browser/defaults.cc', 'browser/defaults.h', + 'browser/diagnostics/diagnostics_main.cc', + 'browser/diagnostics/diagnostics_main.h', + 'browser/diagnostics/sqlite_diagnostics.cc', + 'browser/diagnostics/sqlite_diagnostics.h', 'browser/dock_info_gtk.cc', 'browser/dock_info_win.cc', 'browser/dock_info.cc', |
