| Index: chrome/utility/profile_import_handler_android.cc
|
| diff --git a/chrome/utility/profile_import_handler_android.cc b/chrome/utility/profile_import_handler_android.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6a07dd214debc0f885063b401528ea496a9d70d3
|
| --- /dev/null
|
| +++ b/chrome/utility/profile_import_handler_android.cc
|
| @@ -0,0 +1,23 @@
|
| +// Copyright (c) 2012 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.
|
| +
|
| +// Dummy implementation of ProfileImportHandler for Android.
|
| +
|
| +#include "chrome/utility/profile_import_handler.h"
|
| +
|
| +#include "base/threading/thread.h"
|
| +#include "chrome/browser/importer/external_process_importer_bridge.h"
|
| +#include "chrome/browser/importer/importer.h"
|
| +
|
| +namespace chrome {
|
| +
|
| +ProfileImportHandler::ProfileImportHandler() {}
|
| +
|
| +ProfileImportHandler::~ProfileImportHandler() {}
|
| +
|
| +bool ProfileImportHandler::OnMessageReceived(const IPC::Message&) {
|
| + return true;
|
| +}
|
| +
|
| +} // namespace chrome
|
|
|