Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / chromeos / system_logs / command_line_log_source.cc
index 0d8ea6c..4d18d3b 100644 (file)
@@ -78,6 +78,7 @@ void ExecuteCommandLines(system_logs::SystemLogsResponse* response) {
   commands.push_back(std::make_pair("user_files", command));
 
   for (size_t i = 0; i < commands.size(); ++i) {
+    VLOG(1) << "Executting System Logs Command: " << commands[i].first;
     std::string output;
     base::GetAppOutput(commands[i].second, &output);
     (*response)[commands[i].first] = output;
@@ -88,6 +89,12 @@ void ExecuteCommandLines(system_logs::SystemLogsResponse* response) {
 
 namespace system_logs {
 
+CommandLineLogSource::CommandLineLogSource() : SystemLogsSource("CommandLine") {
+}
+
+CommandLineLogSource::~CommandLineLogSource() {
+}
+
 void CommandLineLogSource::Fetch(const SysLogsSourceCallback& callback) {
   DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
   DCHECK(!callback.is_null());