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

Unified Diff: sync/protocol/theme_specifics.proto

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 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 | « sync/protocol/test.proto ('k') | sync/protocol/typed_url_specifics.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/protocol/theme_specifics.proto
diff --git a/sync/protocol/theme_specifics.proto b/sync/protocol/theme_specifics.proto
deleted file mode 100644
index f8318e89837f0adfcf4c9e7a53e2744b16805c53..0000000000000000000000000000000000000000
--- a/sync/protocol/theme_specifics.proto
+++ /dev/null
@@ -1,39 +0,0 @@
-// 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.
-//
-// Sync protocol datatype extension for themes.
-
-// Update proto_value_conversions{.h,.cc,_unittest.cc} if you change
-// any fields in this file.
-
-syntax = "proto2";
-
-option optimize_for = LITE_RUNTIME;
-option retain_unknown_fields = true;
-
-package sync_pb;
-
-// Properties of theme sync objects.
-message ThemeSpecifics {
- // If set, we're using a custom theme and all custom_* fields should be
- // present. If not set, we use the default or system theme (see below)
- // and all custom_* fields should be omitted.
- optional bool use_custom_theme = 1;
- // This field is only set (i.e., not cleared) on platforms that have
- // a distinction between the system theme and the default theme, but
- // other platforms must be careful to pass through the set state (not
- // just the value) of this flag.
- //
- // If true, we use the system theme by default (i.e., when we don't use
- // a custom theme) for platforms that make a distinction between the
- // default theme and the system theme. Has no effect if use_custom_theme
- // is set.
- optional bool use_system_theme_by_default = 2;
-
- // Custom-theme-specific fields.
- optional string custom_theme_name = 3;
- optional string custom_theme_id = 4;
- optional string custom_theme_update_url = 5;
-}
-
« no previous file with comments | « sync/protocol/test.proto ('k') | sync/protocol/typed_url_specifics.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698