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

Side by Side Diff: chrome/browser/sync/glue/do_optimistic_refresh_task.cc

Issue 5159001: Rest of the autofill work. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Couple of lint errors sneaked into my previous patch. This is clean of lint errors. Created 10 years 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) 2010 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/sync/glue/do_optimistic_refresh_Task.h"
tim (not reviewing) 2010/12/13 19:24:33 lowercase 'task'
lipalani 2010/12/14 21:05:57 Done.
6
7 #include "chrome/browser/autofill/personal_data_manager.h"
8 #include "chrome/browser/browser_thread.h"
9
10 namespace browser_sync {
11
12 DoOptimisticRefreshForAutofill::DoOptimisticRefreshForAutofill(
13 PersonalDataManager* pdm) : pdm_(pdm) {}
14
15 DoOptimisticRefreshForAutofill::~DoOptimisticRefreshForAutofill() {}
16
17 void DoOptimisticRefreshForAutofill::Run() {
18 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
19 pdm_->Refresh();
20 }
21
22 } // namespace browser_sync
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698