| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/callback.h" | 5 #include "base/callback.h" |
| 6 #include "base/logging.h" | 6 #include "base/logging.h" |
| 7 #include "chrome/browser/external_protocol/external_protocol_handler.h" | 7 #include "chrome/browser/external_protocol/external_protocol_handler.h" |
| 8 #include "chrome/browser/importer/importer_progress_dialog.h" | 8 #include "chrome/browser/importer/importer_progress_dialog.h" |
| 9 #include "ui/gfx/native_widget_types.h" | 9 #include "ui/gfx/native_widget_types.h" |
| 10 | 10 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 ImporterObserver* importer_observer, | 61 ImporterObserver* importer_observer, |
| 62 const SourceProfile& source_profile, | 62 const SourceProfile& source_profile, |
| 63 Profile* target_profile, | 63 Profile* target_profile, |
| 64 bool first_run) { | 64 bool first_run) { |
| 65 // TODO(beng); | 65 // TODO(beng); |
| 66 NOTIMPLEMENTED(); | 66 NOTIMPLEMENTED(); |
| 67 } | 67 } |
| 68 | 68 |
| 69 } // namespace importer | 69 } // namespace importer |
| 70 | 70 |
| 71 #if defined(OS_WIN) | 71 #if !defined(OS_CHROMEOS) |
| 72 // static | 72 // static |
| 73 void ExternalProtocolHandler::RunExternalProtocolDialog( | 73 void ExternalProtocolHandler::RunExternalProtocolDialog( |
| 74 const GURL& url, int render_process_host_id, int routing_id) { | 74 const GURL& url, int render_process_host_id, int routing_id) { |
| 75 } | 75 } |
| 76 #endif | 76 #endif |
| OLD | NEW |