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

Side by Side Diff: chrome/browser/extensions/updater/extension_downloader_delegate.cc

Issue 100543005: Update all users of base::Version to explicitly specify the namespace, and clean up the header. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: someday it will work Created 6 years, 12 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/extensions/updater/extension_downloader_delegate.h" 5 #include "chrome/browser/extensions/updater/extension_downloader_delegate.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/version.h"
9 8
10 namespace extensions { 9 namespace extensions {
11 10
12 ExtensionDownloaderDelegate::PingResult::PingResult() : did_ping(false) {} 11 ExtensionDownloaderDelegate::PingResult::PingResult() : did_ping(false) {}
13 12
14 ExtensionDownloaderDelegate::PingResult::~PingResult() {} 13 ExtensionDownloaderDelegate::PingResult::~PingResult() {}
15 14
16 ExtensionDownloaderDelegate::~ExtensionDownloaderDelegate() {} 15 ExtensionDownloaderDelegate::~ExtensionDownloaderDelegate() {}
17 16
18 void ExtensionDownloaderDelegate::OnExtensionDownloadFailed( 17 void ExtensionDownloaderDelegate::OnExtensionDownloadFailed(
19 const std::string& id, 18 const std::string& id,
20 ExtensionDownloaderDelegate::Error error, 19 ExtensionDownloaderDelegate::Error error,
21 const ExtensionDownloaderDelegate::PingResult& ping_result, 20 const ExtensionDownloaderDelegate::PingResult& ping_result,
22 const std::set<int>& request_id) {} 21 const std::set<int>& request_id) {}
23 22
24 bool ExtensionDownloaderDelegate::GetPingDataForExtension( 23 bool ExtensionDownloaderDelegate::GetPingDataForExtension(
25 const std::string& id, 24 const std::string& id,
26 ManifestFetchData::PingData* ping) { 25 ManifestFetchData::PingData* ping) {
27 return false; 26 return false;
28 } 27 }
29 28
30 std::string ExtensionDownloaderDelegate::GetUpdateUrlData( 29 std::string ExtensionDownloaderDelegate::GetUpdateUrlData(
31 const std::string& id) { 30 const std::string& id) {
32 return std::string(); 31 return std::string();
33 } 32 }
34 33
35 } // namespace extensions 34 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698