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

Side by Side Diff: chrome/browser/extensions/pending_extension_info.cc

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 6 Created 8 years, 7 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
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/pending_extension_info.h" 5 #include "chrome/browser/extensions/pending_extension_info.h"
6 6
7 PendingExtensionInfo::PendingExtensionInfo( 7 PendingExtensionInfo::PendingExtensionInfo(
8 const GURL& update_url, 8 const GURL& update_url,
9 const Version& version, 9 const Version& version,
10 ShouldAllowInstallPredicate should_allow_install, 10 ShouldAllowInstallPredicate should_allow_install,
11 bool is_from_sync, 11 bool is_from_sync,
12 bool install_silently, 12 bool install_silently,
13 Extension::Location install_source) 13 extensions::Extension::Location install_source)
14 : update_url_(update_url), 14 : update_url_(update_url),
15 version_(version), 15 version_(version),
16 should_allow_install_(should_allow_install), 16 should_allow_install_(should_allow_install),
17 is_from_sync_(is_from_sync), 17 is_from_sync_(is_from_sync),
18 install_silently_(install_silently), 18 install_silently_(install_silently),
19 install_source_(install_source) {} 19 install_source_(install_source) {}
20 20
21 PendingExtensionInfo::PendingExtensionInfo() 21 PendingExtensionInfo::PendingExtensionInfo()
22 : update_url_(), 22 : update_url_(),
23 should_allow_install_(NULL), 23 should_allow_install_(NULL),
24 is_from_sync_(true), 24 is_from_sync_(true),
25 install_silently_(false), 25 install_silently_(false),
26 install_source_(Extension::INVALID) {} 26 install_source_(extensions::Extension::INVALID) {}
OLDNEW
« no previous file with comments | « chrome/browser/extensions/pending_extension_info.h ('k') | chrome/browser/extensions/pending_extension_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698