| 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 "ui/gfx/native_widget_types.h" | 8 #include "ui/gfx/native_widget_types.h" |
| 9 | 9 |
| 10 #if !defined(OS_WIN) | 10 #if !defined(OS_WIN) |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 namespace chrome { | 34 namespace chrome { |
| 35 | 35 |
| 36 void ShowAboutIPCDialog() { | 36 void ShowAboutIPCDialog() { |
| 37 // TODO(beng): | 37 // TODO(beng): |
| 38 NOTIMPLEMENTED(); | 38 NOTIMPLEMENTED(); |
| 39 } | 39 } |
| 40 | 40 |
| 41 } // namespace chrome | 41 } // namespace chrome |
| 42 | 42 |
| 43 #if !defined(OS_CHROMEOS) | 43 #if !defined(OS_CHROMEOS) && !defined(OS_WIN) |
| 44 // static | 44 // static |
| 45 void ExternalProtocolHandler::RunExternalProtocolDialog( | 45 void ExternalProtocolHandler::RunExternalProtocolDialog( |
| 46 const GURL& url, int render_process_host_id, int routing_id) { | 46 const GURL& url, int render_process_host_id, int routing_id) { |
| 47 } | 47 } |
| 48 #endif | 48 #endif |
| OLD | NEW |