| Index: chrome/browser/first_run/first_run_import_observer.cc
|
| diff --git a/chrome/browser/first_run/first_run_import_observer.cc b/chrome/browser/first_run/first_run_import_observer.cc
|
| deleted file mode 100644
|
| index 611e9577ae9360438e96c5701c53137899fbf85f..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/first_run/first_run_import_observer.cc
|
| +++ /dev/null
|
| @@ -1,30 +0,0 @@
|
| -// Copyright (c) 2011 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/first_run/first_run_import_observer.h"
|
| -
|
| -#include "base/message_loop.h"
|
| -#include "content/public/common/result_codes.h"
|
| -
|
| -FirstRunImportObserver::FirstRunImportObserver()
|
| - : loop_running_(false), import_result_(content::RESULT_CODE_NORMAL_EXIT) {
|
| -}
|
| -
|
| -FirstRunImportObserver::~FirstRunImportObserver() {
|
| -}
|
| -
|
| -void FirstRunImportObserver::RunLoop() {
|
| - loop_running_ = true;
|
| - MessageLoop::current()->Run();
|
| -}
|
| -
|
| -void FirstRunImportObserver::Finish() {
|
| - if (loop_running_)
|
| - MessageLoop::current()->Quit();
|
| -}
|
| -
|
| -void FirstRunImportObserver::ImportCompleted() {
|
| - import_result_ = content::RESULT_CODE_NORMAL_EXIT;
|
| - Finish();
|
| -}
|
|
|