Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1823)

Unified Diff: chrome/browser/first_run/first_run_import_observer.h

Issue 14322002: Remove unused ImportProgressDialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reverted ImportFromBrowser back to returning an int. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/first_run/first_run.cc ('k') | chrome/browser/first_run/first_run_import_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/first_run/first_run_import_observer.h
diff --git a/chrome/browser/first_run/first_run_import_observer.h b/chrome/browser/first_run/first_run_import_observer.h
deleted file mode 100644
index 82d3abdc369d667bf5f83e21bff4e6e954a9f85e..0000000000000000000000000000000000000000
--- a/chrome/browser/first_run/first_run_import_observer.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// 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.
-
-#ifndef CHROME_BROWSER_FIRST_RUN_FIRST_RUN_IMPORT_OBSERVER_H_
-#define CHROME_BROWSER_FIRST_RUN_FIRST_RUN_IMPORT_OBSERVER_H_
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "chrome/browser/importer/importer_observer.h"
-
-// This class is used by first_run::ImportNow to get notified of the outcome of
-// the import operation. It differs from ImportProcessRunner in that this
-// class executes in the context of the importing child process.
-// The values that it handles are meant to be used as the process exit code.
-class FirstRunImportObserver : public ImporterObserver {
- public:
- FirstRunImportObserver();
- virtual ~FirstRunImportObserver();
-
- void RunLoop();
-
- int import_result() const { return import_result_; }
-
- private:
- void Finish();
-
- // ImporterObserver:
- virtual void ImportCompleted() OVERRIDE;
-
- bool loop_running_;
- int import_result_;
-
- DISALLOW_COPY_AND_ASSIGN(FirstRunImportObserver);
-};
-
-#endif // CHROME_BROWSER_FIRST_RUN_FIRST_RUN_IMPORT_OBSERVER_H_
« no previous file with comments | « chrome/browser/first_run/first_run.cc ('k') | chrome/browser/first_run/first_run_import_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698