summaryrefslogtreecommitdiffstats
path: root/components/policy
Commit message (Collapse)AuthorAgeFilesLines
* Silence a warning in generate_policy_source_unittest.cc.binjin2014-08-251-0/+2
| | | | | | | | | | For non-CrOS, compiler gives warning regarding unused functions. BUG=NONE Review URL: https://codereview.chromium.org/504723003 Cr-Commit-Position: refs/heads/master@{#291680}
* Drop 64 character limit in DeviceManagementRequest |agent| parameterbartfab2014-08-251-3/+3
| | | | | | | | | | | | | | | | | | | The HTTP POST |agent| parameter sent with a DeviceManagementRequest is limited to 64 characters. After the git migration, Chrome includes its git revision in the |agent|, making it longer than 64 characters. This CL removes the arbitrary 64 character limit. This solution should be considered temporary, until we have verified that the DMServer can handle |agents| longer than 64 characters. If not, we will restore this limit and change the construction of the string so that it never exceeds 64 characters. BUG=406948 TEST=Browser tests no longer fail when the |agent| string is too long Review URL: https://codereview.chromium.org/500013002 Cr-Commit-Position: refs/heads/master@{#291672}
* Revert of Omnibox: Make URLs of Bookmarks Searchable (patchset #2 of ↵estade@chromium.org2014-08-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://codereview.chromium.org/489373005/) Reason for revert: Broke interactive_ui_tests on mac: https://build.chromium.org/p/chromium.mac/builders/Mac%2010.6%20Tests%20(dbg)(1)/builds/52199 Original issue's description: > Omnibox: Make URLs of Bookmarks Searchable > > This used to be controlled by a field trial created in > https://codereview.chromium.org/184663002 > > After evaluating this change, we've decided to launch it. > This change turns the flag on by default and removes the field trial code. > It also removes the index_urls_ parameters everywhere because those will > always be true forevermore. > > I tested this interactively. > Also, all the unit tests still apparently pass. And yes some of these do > exercise this feature. > > TBR=joaodasilva > (for trivial change to components/policy/core/browser/managed_bookmarks_tracker_unittest.cc ) > > BUG=157204,378854 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=291445 TBR=pkasting@google.com,sky@chromium.org,pkasting@chromium.org,mpearson@chromium.org NOTREECHECKS=true NOTRY=true BUG=157204,378854 Review URL: https://codereview.chromium.org/485483003 Cr-Commit-Position: refs/heads/master@{#291496} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291496 0039d316-1c4b-4281-b951-d872f2087c98
* Omnibox: Make URLs of Bookmarks Searchablempearson@chromium.org2014-08-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | This used to be controlled by a field trial created in https://codereview.chromium.org/184663002 After evaluating this change, we've decided to launch it. This change turns the flag on by default and removes the field trial code. It also removes the index_urls_ parameters everywhere because those will always be true forevermore. I tested this interactively. Also, all the unit tests still apparently pass. And yes some of these do exercise this feature. TBR=joaodasilva (for trivial change to components/policy/core/browser/managed_bookmarks_tracker_unittest.cc ) BUG=157204,378854 Review URL: https://codereview.chromium.org/489373005 Cr-Commit-Position: refs/heads/master@{#291445} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291445 0039d316-1c4b-4281-b951-d872f2087c98
* Move guest policy to M38mlerman@chromium.org2014-08-221-1/+1
| | | | | | | | | BUG=306322 Review URL: https://codereview.chromium.org/466293003 Cr-Commit-Position: refs/heads/master@{#291289} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291289 0039d316-1c4b-4281-b951-d872f2087c98
* Removed --disable-print-preview switch and policy.vitalybuka@chromium.org2014-08-211-3/+6
| | | | | | | | | | | Also removed dependent switches --disable-scripted-print-throttling and --renderer-print-preview. BUG=374321 Review URL: https://codereview.chromium.org/488853002 Cr-Commit-Position: refs/heads/master@{#291251} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291251 0039d316-1c4b-4281-b951-d872f2087c98
* No longer accept unsigned cloud policy blobs.atwilson@chromium.org2014-08-202-39/+23
| | | | | | | | | | | | | | UMA stats show that >99% of users have migrated to signed cloud policy blobs, so it's time to stop supporting unsigned blobs - anyone who still has an unsigned blob on their machine will go through a policy refresh on their next restart. BUG=404664 Review URL: https://codereview.chromium.org/491513002 Cr-Commit-Position: refs/heads/master@{#290801} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290801 0039d316-1c4b-4281-b951-d872f2087c98
* Bypass internal Chrome schemes when "*" is blacklisted.joaodasilva@chromium.org2014-08-191-3/+45
| | | | | | | | | | | | | This change prevents Chrome from blocking internal URLs with the wildcard "*" filter in the URL blacklist. Such URLs can still be blocked with more specific filters. BUG=403336 Review URL: https://codereview.chromium.org/478283003 Cr-Commit-Position: refs/heads/master@{#290534} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290534 0039d316-1c4b-4281-b951-d872f2087c98
* Updating XTBs based on .GRDs from branch 2062amineer@chromium.org2014-08-152-3/+3
| | | | | Cr-Commit-Position: refs/heads/master@{#289925} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289925 0039d316-1c4b-4281-b951-d872f2087c98
* The DisabledSchemes policy can be set per Profile.joaodasilva@chromium.org2014-08-151-4/+1
| | | | | | | | | | | | This policy has been refactored to work with the same mechanism as the URLBlacklist, which work per Profile. BUG=None Review URL: https://codereview.chromium.org/471943002 Cr-Commit-Position: refs/heads/master@{#289743} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289743 0039d316-1c4b-4281-b951-d872f2087c98
* Create a policy for controlling whether or not desktop browser can access ↵mlerman@chromium.org2014-08-141-1/+16
| | | | | | | | | | | | | | guest mode. BUG=306322 TEST=When the policy prohibits guest mode, the option should not be selectable from the User Manager. When no policy or policy permits guest mode, Guest Mode should be selectable. Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=287212 Review URL: https://codereview.chromium.org/385073008 Cr-Commit-Position: refs/heads/master@{#289536} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289536 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 289312 "Move StringToUpperASCII and LowerCaseEqualsASCII ..."brettw@chromium.org2014-08-132-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Move StringToUpperASCII and LowerCaseEqualsASCII to the base namespace > > Convert LowerCaseEqualsASCII to take StringPiece. In the current patch this is > generally a NOP but will allow me to delete the other 4 variants in a followup > (wanted to do that separately since that will require more review, since > callsites will be changed in nontrivial ways). > > In some cases, LowerCaseEqualsASCII is called with a WebString, which no > longer is implicitly converted. I added base::string16(...) around such > calls to force the right conversion. It happened in these files: > window_container_type.cc > savable_resources.cc > render_view_impl.cc > blink_ax_tree_source.cc > password_form_conversion_utils.cc > translate_helper.cc > chrome_render_view_observer.cc > dom_serializer_browsertest.cc > > R=jamesr@chromium.org > > Review URL: https://codereview.chromium.org/448143008 TBR=brettw@chromium.org Review URL: https://codereview.chromium.org/474483002 Cr-Commit-Position: refs/heads/master@{#289320} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289320 0039d316-1c4b-4281-b951-d872f2087c98
* Add more detailed UMA reporting on enrollment errors.tnagel@chromium.org2014-08-131-0/+8
| | | | | | | | | BUG=305457 Review URL: https://codereview.chromium.org/471543002 Cr-Commit-Position: refs/heads/master@{#289317} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289317 0039d316-1c4b-4281-b951-d872f2087c98
* Move StringToUpperASCII and LowerCaseEqualsASCII to the base namespacebrettw@chromium.org2014-08-132-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | Convert LowerCaseEqualsASCII to take StringPiece. In the current patch this is generally a NOP but will allow me to delete the other 4 variants in a followup (wanted to do that separately since that will require more review, since callsites will be changed in nontrivial ways). In some cases, LowerCaseEqualsASCII is called with a WebString, which no longer is implicitly converted. I added base::string16(...) around such calls to force the right conversion. It happened in these files: window_container_type.cc savable_resources.cc render_view_impl.cc blink_ax_tree_source.cc password_form_conversion_utils.cc translate_helper.cc chrome_render_view_observer.cc dom_serializer_browsertest.cc R=jamesr@chromium.org Review URL: https://codereview.chromium.org/448143008 Cr-Commit-Position: refs/heads/master@{#289312} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289312 0039d316-1c4b-4281-b951-d872f2087c98
* Updating XTBs based on .GRDs from branch 2062amineer@chromium.org2014-08-125-43/+43
| | | | | Cr-Commit-Position: refs/heads/master@{#289081} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289081 0039d316-1c4b-4281-b951-d872f2087c98
* Separate UMA histograms for user and device policy invalidationbartfab@chromium.org2014-08-122-4/+9
| | | | | | | | | | | | | This CL separates the UMA histograms used for user and device policy invalidation. BUG=358699 TEST=Extended unit tests Review URL: https://codereview.chromium.org/465433002 Cr-Commit-Position: refs/heads/master@{#289065} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289065 0039d316-1c4b-4281-b951-d872f2087c98
* Move StringToLowerASCII to base namespacebrettw@chromium.org2014-08-071-1/+1
| | | | | | | | TBR=sky Review URL: https://codereview.chromium.org/448853002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288085 0039d316-1c4b-4281-b951-d872f2087c98
* Reland "components: Fix a couple of the TODO(GYP) todos."tfarina@chromium.org2014-08-071-1/+1
| | | | | | | | | | | | | It was originally committed at r286362 and reverted in r286467. BUG=None TEST=gn gen out/Debug_gn && ninja -C out/Debug_gn R=scottmg@chromium.org,brettw@chromium.org TBR=jochen@chromium.org Review URL: https://codereview.chromium.org/427293002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288006 0039d316-1c4b-4281-b951-d872f2087c98
* Rename ServerBoundCert => ChannelID to reflect the current name.wtc@chromium.org2014-08-071-1/+1
| | | | | | | | | | | | | These were missed by the big renaming CL https://codereview.chromium.org/356713005/. R=rch@chromium.org,asargent@chromium.org,lcwu@chromium.org TBR=twilson@chromium.org BUG= Review URL: https://codereview.chromium.org/430673002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287932 0039d316-1c4b-4281-b951-d872f2087c98
* Document pixel dimension limit for WallpaperImage policy.tnagel@chromium.org2014-08-061-1/+1
| | | | | | | | BUG=366825 Review URL: https://codereview.chromium.org/449483002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287816 0039d316-1c4b-4281-b951-d872f2087c98
* Allow recommended locales to be set for public sessionsbartfab@chromium.org2014-08-061-1/+35
| | | | | | | | | | | | | | | | | | | | | | This CL introduces the |SessionLocales| policy that can be used to recommend one or more UI locales for a public session. If the policy is set, the first recommended locale is pre-selected when starting a public session. If more than one locale is recommended, the public session pod is shown in its advanced form, highlighting the availability of language and keyboard layout pickers. The keyboard layout is automatically set to the most popular layout matching the UI locale. This CL also fixes the flaky DeviceLocalAccountTest.* and TermsOfServiceDownloadTest.Ü. BUG=214904, 241790, 401010 TEST=Extensive browser test coverage, including picker UI Review URL: https://codereview.chromium.org/426063005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287767 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 287581 "Allow recommended locales to be set for public se..."robliao@chromium.org2014-08-051-35/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | AddressSanitizer: global-buffer-overflow READ of size 8 at 0x0000155dfc10 thread T0 (browser_tests) #0 0xda3a92 in policy::DeviceLocalAccountTest::SetRecommendedLocales(char const**, unsigned long) chrome/browser/chromeos/policy/device_local_account_browsertest.cc:583:7 #1 0xdaa280 in policy::DeviceLocalAccountTest_MultipleRecommendedLocales_Test::RunTestOnMainThread() chrome/browser/chromeos/policy/device_local_account_browsertest.cc:1671:3 #2 0x38ea263 in InProcessBrowserTest::RunTestOnMainThreadLoop() chrome/test/base/in_process_browser_test.cc:428:5 > Allow recommended locales to be set for public sessions > > This CL introduces the |SessionLocales| policy that can be used to > recommend one or more UI locales for a public session. If the policy is > set, the first recommended locale is pre-selected when starting a public > session. If more than one locale is recommended, the public session pod > is shown in its advanced form, highlighting the availability of language > and keyboard layout pickers. > > The keyboard layout is automatically set to the most popular layout > matching the UI locale. > > BUG=214904,241790 > TEST=Extensive browser test coverage, including picker UI > R=asvitkine@chromium.org, nkostylev@chromium.org, pneubeck@chromium.org > > Review URL: https://codereview.chromium.org/426063005 TBR=bartfab@chromium.org Review URL: https://codereview.chromium.org/441143002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287634 0039d316-1c4b-4281-b951-d872f2087c98
* Updating XTBs based on .GRDs from branch 2062amineer@chromium.org2014-08-0513-290/+324
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287590 0039d316-1c4b-4281-b951-d872f2087c98
* Allow recommended locales to be set for public sessionsbartfab@chromium.org2014-08-051-1/+35
| | | | | | | | | | | | | | | | | | | | This CL introduces the |SessionLocales| policy that can be used to recommend one or more UI locales for a public session. If the policy is set, the first recommended locale is pre-selected when starting a public session. If more than one locale is recommended, the public session pod is shown in its advanced form, highlighting the availability of language and keyboard layout pickers. The keyboard layout is automatically set to the most popular layout matching the UI locale. BUG=214904,241790 TEST=Extensive browser test coverage, including picker UI R=asvitkine@chromium.org, nkostylev@chromium.org, pneubeck@chromium.org Review URL: https://codereview.chromium.org/426063005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287581 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 287212 "Create a policy for controlling whether or not de..."pneubeck@chromium.org2014-08-021-17/+1
| | | | | | | | | | | | | | | | | | | Likely broke the tree, UserManagerUIBrowserTest.PageLoads http://build.chromium.org/p/chromium.mac/builders/Mac%2010.6%20Tests%20%28dbg%29%284%29/builds/43558/steps/browser_tests/logs/PageLoads > Create a policy for controlling whether or not desktop browser can access guest mode. > > BUG=306322 > TEST=When the policy prohibits guest mode, the option should not be selectable from the User Manager. When no policy or policy permits guest mode, Guest Mode should be selectable. > > Review URL: https://codereview.chromium.org/385073008 TBR=mlerman@chromium.org Review URL: https://codereview.chromium.org/437563004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287220 0039d316-1c4b-4281-b951-d872f2087c98
* Create a policy for controlling whether or not desktop browser can access ↵mlerman@chromium.org2014-08-021-1/+17
| | | | | | | | | | | guest mode. BUG=306322 TEST=When the policy prohibits guest mode, the option should not be selectable from the User Manager. When no policy or policy permits guest mode, Guest Mode should be selectable. Review URL: https://codereview.chromium.org/385073008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287212 0039d316-1c4b-4281-b951-d872f2087c98
* Implement policy for kNetworkPredictionOptions.bnc@chromium.org2014-08-011-1/+43
| | | | | | | | | | | | A new policy is added for kNetworkPredictionOptions, a preference that deprecates kNetworkPredicionEnabled. The policy handler observes policies for both, making the change seamless for policy admins. BUG=334602 Review URL: https://codereview.chromium.org/431493003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287022 0039d316-1c4b-4281-b951-d872f2087c98
* Enable SigninAllowed policy on Android and plumb it through to SigninManagerbauerb@chromium.org2014-08-011-1/+1
| | | | | | | | BUG=398453 Review URL: https://codereview.chromium.org/425803012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287017 0039d316-1c4b-4281-b951-d872f2087c98
* cros: Turn on EasyUnlock by default and add a policy.xiyuan@chromium.org2014-07-311-1/+22
| | | | | | | | | | | | | | | | - Turn on EasyUnlock by default; - Add a user policy EasyUnlockAllowed to control whether EasyUnlock is allowed; - Change easy unlock helper code into a EasyUnlockService that observes the policy pref value and dynamically load/unload the EasyUnlock app; - Added tests that EasyUnlock is only allowed when both policy and finch config says so. BUG=354090,397406 Review URL: https://codereview.chromium.org/427033004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@286870 0039d316-1c4b-4281-b951-d872f2087c98
* Transfer auth cookies set by SAML IdPs to user profile during loginbartfab@chromium.org2014-07-311-1/+23
| | | | | | | | | | | | | | | | | | Currently, auth cookies set by a SAML IdP get transferred to the user's profile on his/her first login only. This CL introduces a policy that, if set to true, makes Chrome OS copy the IdP's auth cookies to the user's profile on subsequent logins as well. GAIA cookies are still copied on first login only. On subsequent logins, /MergeSession is used to merge the authentication states in the login profile and the user's profile. BUG=381123 TEST=Full unit and browser thread coverage Review URL: https://codereview.chromium.org/358613003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@286645 0039d316-1c4b-4281-b951-d872f2087c98
* Revert of components: Fix a couple of the TODO(GYP) todos. ↵serya@chromium.org2014-07-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (https://codereview.chromium.org/420113003/) Reason for revert: Likely caused build falure: FAILED: ninja -t msvc -e environment.x86 -- C:\b\build\goma/gomacc "C:\b\depot_tools\win_toolchain\vs2013_files\VC\bin\amd64_x86\cl.exe" /nologo /showIncludes /FC @obj\components\invalidation\invalidation_test_support.invalidator_test_template.obj.rsp /c ..\..\components\invalidation\invalidator_test_template.cc /Foobj\components\invalidation\invalidation_test_support.invalidator_test_template.obj /Fdobj\components\invalidation_test_support.cc.pdb c:\b\build\slave\win\build\src\components\invalidation\invalidator_test_template.h(87) : fatalerror C1083: Cannot open include file: 'google/cacheinvalidation/types.pb.h': No such file or directory ninja: build stopped: subcommand failed. http://build.chromium.org/p/chromium/builders/Win/builds/22963/steps/compile/logs/stdio Original issue's description: > components: Fix a couple of the TODO(GYP) todos. > > BUG=None > TEST=gn gen out/Debug_gn + build the effected targets with ninja. > R=brettw@chromium.org > TBR=jochen@chromium.org > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=286362 TBR=brettw@chromium.org,tfarina@chromium.org NOTREECHECKS=true NOTRY=true BUG=None Review URL: https://codereview.chromium.org/428123002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@286467 0039d316-1c4b-4281-b951-d872f2087c98
* components: Fix a couple of the TODO(GYP) todos.tfarina@chromium.org2014-07-301-1/+1
| | | | | | | | | | | BUG=None TEST=gn gen out/Debug_gn + build the effected targets with ninja. R=brettw@chromium.org TBR=jochen@chromium.org Review URL: https://codereview.chromium.org/420113003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@286362 0039d316-1c4b-4281-b951-d872f2087c98
* Extend EnrollmentHandler to handle consumer management.davidyu@chromium.org2014-07-281-0/+2
| | | | | | | | | | | | | | | For consumer management, there are two main differences: 1. It does not lock device. Instead, it stores DM token and device id into PolicyData via DeviceSettingsService::SetManagementSettings(). 2. It does not store policies (yet) BUG=chromium:353050 TEST=none Review URL: https://codereview.chromium.org/363273002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285966 0039d316-1c4b-4281-b951-d872f2087c98
* Added more policy UMA metrics.atwilson@chromium.org2014-07-283-18/+56
| | | | | | | | | | | Added missing UMA metrics, and updated histograms.xml to reflect existing metrics. BUG=160947 Review URL: https://codereview.chromium.org/382813002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285903 0039d316-1c4b-4281-b951-d872f2087c98
* Updates policy templates to generate the right ADM files.kaliamoorthi@chromium.org2014-07-241-0/+1
| | | | | | | | BUG=116119 Review URL: https://codereview.chromium.org/417993002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285325 0039d316-1c4b-4281-b951-d872f2087c98
* Decrement CreateDoubleValue countestade@chromium.org2014-07-196-26/+23
| | | | | | | | BUG=160586 Review URL: https://codereview.chromium.org/390233003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284304 0039d316-1c4b-4281-b951-d872f2087c98
* Get rid of the rest of CreateStringValueestade@chromium.org2014-07-1821-132/+251
| | | | | | | | BUG=160586 Review URL: https://codereview.chromium.org/388963002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284201 0039d316-1c4b-4281-b951-d872f2087c98
* Add more polices to the protected list.pastarmovj@chromium.org2014-07-181-7/+38
| | | | | | | | BUG=379967 Review URL: https://codereview.chromium.org/392333003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284086 0039d316-1c4b-4281-b951-d872f2087c98
* Eliminate CreateBooleanValue from test filesestade@chromium.org2014-07-178-59/+131
| | | | | | | | BUG=160586 Review URL: https://codereview.chromium.org/397793002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283665 0039d316-1c4b-4281-b951-d872f2087c98
* Extirpate CreateBooleanValue.estade@chromium.org2014-07-174-8/+6
| | | | | | | | BUG=160586 Review URL: https://codereview.chromium.org/399433005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283619 0039d316-1c4b-4281-b951-d872f2087c98
* Fix EnterpriseDeviceManagementStatus UMA enum, add comments.tnagel@chromium.org2014-07-164-97/+125
| | | | | | | | | | | | | I've gone through the enterprise UMA enums and compared them to their C++ counterparts. There was a mismatch for EnterpriseDeviceManagementStatus which is corrected by this CL. To prevent this kind of error in the future, this CL adds comments and numeric ids to the C++ enums. BUG=none Review URL: https://codereview.chromium.org/375903002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283571 0039d316-1c4b-4281-b951-d872f2087c98
* Remove more CreateIntegerValue calls.estade@chromium.org2014-07-1610-167/+382
| | | | | | | | BUG=160586 Review URL: https://codereview.chromium.org/383263005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283554 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanups to the policy code.joaodasilva@chromium.org2014-07-163-5/+5
| | | | | | | | | | This is a follow-up to https://codereview.chromium.org/337053005. BUG=224596 Review URL: https://codereview.chromium.org/392233003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283549 0039d316-1c4b-4281-b951-d872f2087c98
* Enrollment recovery: Add UMA stats.tnagel@chromium.org2014-07-162-0/+6
| | | | | | | | | | Add UMA stats to track frequency and success rate of enrollment recovery. BUG=389481 Review URL: https://codereview.chromium.org/385983007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283342 0039d316-1c4b-4281-b951-d872f2087c98
* Updating XTBs based on .GRDs from branch 2062amineer@chromium.org2014-07-1452-1739/+3813
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283086 0039d316-1c4b-4281-b951-d872f2087c98
* Pull buildtools to get GN r282653brettw@chromium.org2014-07-141-2/+0
| | | | | | | | | | | | | | | This uses the proto file directory for the generated files rather than the directory of the BUILD file. This makes it more natural when you have a BUILD file in a different directory than the proto files. Fixes a search-and-replace error that accidentally changed the fallback source_prereqs code to use "inputs". Fix ozone build. BUG= R=ajwong@chromium.org Review URL: https://codereview.chromium.org/386943006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282998 0039d316-1c4b-4281-b951-d872f2087c98
* clang/win: Another followup to https://codereview.chromium.org/369303004/thakis@chromium.org2014-07-121-2/+2
| | | | | | | | | BUG=82385 TBR=joaodasilva@chromium.org Review URL: https://codereview.chromium.org/385373002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282844 0039d316-1c4b-4281-b951-d872f2087c98
* Updating XTBs based on .GRDs from branch 1985matthewyuan@chromium.org2014-07-1152-3834/+1760
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282566 0039d316-1c4b-4281-b951-d872f2087c98
* Remove cloud policy refresh rate limit.stepco@chromium.org2014-07-118-276/+5
| | | | | | | | BUG=391902 Review URL: https://codereview.chromium.org/375933002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282565 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 282532 "Updating XTBs based on .GRDs from branch 1985_103"matthewyuan@chromium.org2014-07-1152-1712/+3786
| | | | | | | | | | > Updating XTBs based on .GRDs from branch 1985_103 TBR=matthewyuan@chromium.org Review URL: https://codereview.chromium.org/386893002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282559 0039d316-1c4b-4281-b951-d872f2087c98