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

Side by Side Diff: chrome/browser/extensions/extension_sync_data.h

Issue 264933005: Add remote_install flag to extension sync data. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 6 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 | 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 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/version.h" 10 #include "base/version.h"
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 const std::string& name() const { return name_; } 65 const std::string& name() const { return name_; }
66 66
67 private: 67 private:
68 // Populate this class from sync inputs. 68 // Populate this class from sync inputs.
69 void PopulateFromSyncData(const syncer::SyncData& sync_data); 69 void PopulateFromSyncData(const syncer::SyncData& sync_data);
70 70
71 std::string id_; 71 std::string id_;
72 bool uninstalled_; 72 bool uninstalled_;
73 bool enabled_; 73 bool enabled_;
74 bool incognito_enabled_; 74 bool incognito_enabled_;
75 bool remote_install_;
75 Version version_; 76 Version version_;
76 GURL update_url_; 77 GURL update_url_;
77 std::string name_; 78 std::string name_;
78 }; 79 };
79 80
80 } // namespace extensions 81 } // namespace extensions
81 82
82 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_ 83 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/app_sync_data_unittest.cc ('k') | chrome/browser/extensions/extension_sync_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698