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

Side by Side Diff: chrome/browser/first_run/first_run_browser_process.cc

Issue 9702103: Clean up first run: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/first_run/first_run_browser_process.h"
6
7 #include "base/command_line.h"
8
9 FirstRunBrowserProcess::FirstRunBrowserProcess(const CommandLine& command_line)
10 : BrowserProcessImpl(command_line) {
11 }
12
13 FirstRunBrowserProcess::~FirstRunBrowserProcess() {
14 }
15
16 GoogleURLTracker* FirstRunBrowserProcess::google_url_tracker() {
17 return NULL;
18 }
19
20 IntranetRedirectDetector* FirstRunBrowserProcess::intranet_redirect_detector() {
21 return NULL;
22 }
OLDNEW
« no previous file with comments | « chrome/browser/first_run/first_run_browser_process.h ('k') | chrome/browser/first_run/first_run_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698