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

Side by Side Diff: third_party/protobuf/php/src/Google/Protobuf/Internal/OneofField.php

Issue 2495533002: third_party/protobuf: Update to HEAD (83d681ee2c) (Closed)
Patch Set: Make chrome settings proto generated file a component Created 4 years 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 #region Copyright notice and license 1 <?php
2
2 // Protocol Buffers - Google's data interchange format 3 // Protocol Buffers - Google's data interchange format
3 // Copyright 2008 Google Inc. All rights reserved. 4 // Copyright 2008 Google Inc. All rights reserved.
4 // https://developers.google.com/protocol-buffers/ 5 // https://developers.google.com/protocol-buffers/
5 // 6 //
6 // Redistribution and use in source and binary forms, with or without 7 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions are 8 // modification, are permitted provided that the following conditions are
8 // met: 9 // met:
9 // 10 //
10 // * Redistributions of source code must retain the above copyright 11 // * Redistributions of source code must retain the above copyright
11 // notice, this list of conditions and the following disclaimer. 12 // notice, this list of conditions and the following disclaimer.
12 // * Redistributions in binary form must reproduce the above 13 // * Redistributions in binary form must reproduce the above
13 // copyright notice, this list of conditions and the following disclaimer 14 // copyright notice, this list of conditions and the following disclaimer
14 // in the documentation and/or other materials provided with the 15 // in the documentation and/or other materials provided with the
15 // distribution. 16 // distribution.
16 // * Neither the name of Google Inc. nor the names of its 17 // * Neither the name of Google Inc. nor the names of its
17 // contributors may be used to endorse or promote products derived from 18 // contributors may be used to endorse or promote products derived from
18 // this software without specific prior written permission. 19 // this software without specific prior written permission.
19 // 20 //
20 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 22 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 24 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 25 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 26 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 30 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #endregion
32 32
33 using System; 33 namespace Google\Protobuf\Internal;
34 using System.Text.RegularExpressions;
35 34
36 namespace Google.Protobuf 35 class OneofField
37 { 36 {
38 /// <summary> 37
39 /// Class containing helpful workarounds for various platform compatibility 38 private $desc;
40 /// </summary> 39 private $field_name;
41 internal static class FrameworkPortability 40 private $number = 0;
41 private $value;
42
43 public function __construct($desc)
42 { 44 {
43 // The value of RegexOptions.Compiled is 8. We can test for the presence at 45 $this->desc = $desc;
44 // execution time using Enum.IsDefined, so a single build will do the ri ght thing
45 // on each platform. (RegexOptions.Compiled isn't supported by PCLs.)
46 internal static readonly RegexOptions CompiledRegexWhereAvailable =
47 Enum.IsDefined(typeof(RegexOptions), 8) ? (RegexOptions)8 : RegexOpt ions.None;
48 } 46 }
49 } 47
48 public function setValue($value)
49 {
50 $this->value = $value;
51 }
52
53 public function getValue()
54 {
55 return $this->value;
56 }
57
58 public function setFieldName($field_name)
59 {
60 $this->field_name = $field_name;
61 }
62
63 public function getFieldName()
64 {
65 return $this->field_name;
66 }
67
68 public function setNumber($number)
69 {
70 $this->number = $number;
71 }
72
73 public function getNumber()
74 {
75 return $this->number;
76 }
77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698