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

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

Issue 6852029: [Sync] Move some extension-sync-related logic to ExtensionService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add TODO, fix lint Created 9 years, 8 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
(Empty)
1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_
7 #pragma once
8
9 #include <string>
10
11 #include "base/version.h"
12 #include "googleurl/src/gurl.h"
13
14 struct ExtensionSyncData {
asargent_no_longer_on_chrome 2011/04/14 23:32:14 nit: Even though this is just a struct, it would b
akalin 2011/04/15 01:17:11 Done.
15 ExtensionSyncData();
16 ~ExtensionSyncData();
17
18 std::string id;
19
20 // Version-independent properties.
21 bool uninstalled;
22 bool enabled;
23 bool incognito_enabled;
24
25 Version version;
26
27 // Version-dependent properties.
asargent_no_longer_on_chrome 2011/04/14 23:32:14 Isn't "version" version-dependent? :) Actually I'
akalin 2011/04/15 01:17:11 Added clarifying comments.
28 GURL update_url;
29 };
30
31 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698