summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorcpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-13 22:56:53 +0000
committercpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-13 22:56:53 +0000
commite9403ab1516c5ada016249c1c124485640c2ae8f (patch)
treef5194eb4816c431ba0601896afb7170b74c3e346 /chrome
parentb23aee0f939e07a9531935e7f0daa8a346912708 (diff)
downloadchromium_src-e9403ab1516c5ada016249c1c124485640c2ae8f.zip
chromium_src-e9403ab1516c5ada016249c1c124485640c2ae8f.tar.gz
chromium_src-e9403ab1516c5ada016249c1c124485640c2ae8f.tar.bz2
Empty files to kick off the diagnostic mode
- Main entry point - sqlite error handler BUG=none TEST=none TBR=huanr Review URL: http://codereview.chromium.org/274033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28908 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/diagnostics/diagnostics_main.cc5
-rw-r--r--chrome/browser/diagnostics/diagnostics_main.h9
-rw-r--r--chrome/browser/diagnostics/sqlite_diagnostics.cc6
-rw-r--r--chrome/browser/diagnostics/sqlite_diagnostics.h9
-rwxr-xr-xchrome/chrome.gyp4
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',