summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_process_impl.cc
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-05 04:14:11 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-05 04:14:11 +0000
commit1b8d02f181d089ee670f2ba72089c3722f679d5f (patch)
tree42ca83bfe4ffe27afa3e67179749826bb40869e2 /chrome/browser/browser_process_impl.cc
parent80720414325af11e0dccedaf8c8f65998f91ec76 (diff)
downloadchromium_src-1b8d02f181d089ee670f2ba72089c3722f679d5f.zip
chromium_src-1b8d02f181d089ee670f2ba72089c3722f679d5f.tar.gz
chromium_src-1b8d02f181d089ee670f2ba72089c3722f679d5f.tar.bz2
Get rid of the ClipboardService class and header... it is nothing but a shell around base::Clipboard now.
http://crbug.com/11387 Review URL: http://codereview.chromium.org/105011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15274 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process_impl.cc')
-rw-r--r--chrome/browser/browser_process_impl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
index 085f773..0c3e9ea 100644
--- a/chrome/browser/browser_process_impl.cc
+++ b/chrome/browser/browser_process_impl.cc
@@ -4,6 +4,7 @@
#include "chrome/browser/browser_process_impl.h"
+#include "base/clipboard.h"
#include "base/command_line.h"
#include "base/path_service.h"
#include "base/thread.h"
@@ -24,7 +25,6 @@
#include "chrome/browser/safe_browsing/safe_browsing_service.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
-#include "chrome/common/clipboard_service.h"
#include "chrome/common/l10n_util.h"
#include "chrome/common/notification_service.h"
#include "chrome/common/pref_names.h"
@@ -112,7 +112,7 @@ BrowserProcessImpl::BrowserProcessImpl(const CommandLine& command_line)
checked_for_new_frames_(false),
using_new_frames_(false) {
g_browser_process = this;
- clipboard_service_.reset(new ClipboardService);
+ clipboard_.reset(new Clipboard);
main_notification_service_.reset(new NotificationService);
// Must be created after the NotificationService.