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

Unified Diff: chrome/browser/api/webdata/web_data_results.cc

Issue 11761016: Separate WebDataRequest functionality from WebDataService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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/api/webdata/web_data_results.h ('k') | chrome/browser/webdata/web_data_request_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/api/webdata/web_data_results.cc
diff --git a/chrome/browser/api/webdata/web_data_results.cc b/chrome/browser/api/webdata/web_data_results.cc
new file mode 100644
index 0000000000000000000000000000000000000000..8001052cae4285bc5d97fde530f240a695aa7869
--- /dev/null
+++ b/chrome/browser/api/webdata/web_data_results.cc
@@ -0,0 +1,19 @@
+// 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.
+
+#include "chrome/browser/api/webdata/web_data_results.h"
+
+// TODO(caitkp): This should not live in chrome/browser/api...
Jói 2013/01/09 19:05:52 nit: Just one space after the // I think it's act
+
+WDTypedResult::WDTypedResult(WDResultType type)
+ : type_(type),
+ callback_(DestroyCallback()) {
+}
+
+WDTypedResult::WDTypedResult(WDResultType type, const DestroyCallback& callback)
+ : type_(type),
+ callback_(callback) {
+}
+
+WDTypedResult::~WDTypedResult() {}
« no previous file with comments | « chrome/browser/api/webdata/web_data_results.h ('k') | chrome/browser/webdata/web_data_request_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698