summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* sync: Better iteration in GenericChangeProcessorrlarocque@chromium.org2013-05-287-4/+135
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change introduces a new function for fetching the handles of all children of a sync node, then puts it to use in optimizing the GenericChangeProcessor's GetSyncDataForType() function. Prior to the UniquePosition changes, it was simple and cheap to fetch the ID of a successor or predecessor item. After the change, it requires a few expensive map lookups. In other words, GetSuccessorId() has gone from being O(1) to O(lg(n)). This is a especially a problem in code paths where we use GetSuccessorId() to iterate over all nodes in a folder. The UniquePosition change also makes it pretty easy to fetch all child nodes under a given parent. We could easily return all the EntryKernels under a given folder. Unfortunately, the APIs don't make it easy to expose that functionality. Instead, we do something less efficient, but still much better than the status quo: return the IDs of all the children. The caller will need to look up each entry at O(lg(n)) cost, but at least it didn't have to do two lookups to fetch each ID. This change should lead to a slight performance improvement in the ModelAssociation time of types that use the GenericChangeProcessor. BUG=178275, 241813 Review URL: https://chromiumcodereview.appspot.com/14667013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202673 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2013-05-281-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202672 0039d316-1c4b-4281-b951-d872f2087c98
* Fix MediaPlayerDelegate error handling so it passes the ↵acolwell@chromium.org2013-05-285-51/+59
| | | | | | | | | | | | webkitmediasource-errors.html LayoutTest. BUG=233420 TEST=http/tests/media/media-source/webkitmediasource-errors.html LayoutTests now passes w/o crashing. Review URL: https://chromiumcodereview.appspot.com/15927003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202671 0039d316-1c4b-4281-b951-d872f2087c98
* Roll webrtc 4073:4125sergeyu@chromium.org2013-05-281-1/+1
| | | | | | | | | BUG=244218 R=ronghuawu@chromium.org Review URL: https://codereview.chromium.org/16170002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202670 0039d316-1c4b-4281-b951-d872f2087c98
* Windows perf bots: fixes android pylib initialization.jchaffraix@chromium.org2013-05-281-4/+6
| | | | | | | | | | | | Following crrev.com/202558, android's pylib was initialized on platforms that didn't need. Check for platform and also make it safer to use should there be problems with "which". BUG=242960 R=tonyg@chromium.org Review URL: https://codereview.chromium.org/15804004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202669 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac][MC] Add a tooltip for the status item.rsesek@chromium.org2013-05-281-2/+19
| | | | | | | | BUG=243940 Review URL: https://chromiumcodereview.appspot.com/15917008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202668 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes a test dependency for building on non-aura snapshot_unittestsmukai@chromium.org2013-05-281-0/+1
| | | | | | | | | TEST=compile succeeds BUG=244464 Review URL: https://chromiumcodereview.appspot.com/16164002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202667 0039d316-1c4b-4281-b951-d872f2087c98
* drop unused execinfo.h headervapier@chromium.org2013-05-282-6/+0
| | | | | | | | | | | | | The execinfo.h header only provides prototypes for backtrace funcs. These two files don't use those funcs, so the include is unused. Punt it to make building on non-glibc systems easier. BUG=None TEST=trybot for linux/nacl/cros work Review URL: https://chromiumcodereview.appspot.com/16120002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202666 0039d316-1c4b-4281-b951-d872f2087c98
* Support multiple voices for all available modules (text-to-speech engines) ↵dtseng@chromium.org2013-05-282-10/+67
| | | | | | | | | | | | on Linux. This adds appropriate calls to retrieve voices from SpeechDispatcher and make it available through Chrome. We combine all voices across all available modules into one list in order to conform to the way Chrome exposes voices. Review URL: https://chromiumcodereview.appspot.com/15846006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202665 0039d316-1c4b-4281-b951-d872f2087c98
* chrome: Use base::MessageLoop. (Part 3)xhwang@chromium.org2013-05-28571-1809/+1863
| | | | | | | | | | | | This CL updates chrome/browser/* other than chrome/browser/ui which is in another CL. BUG=236029 TBR=brettw Review URL: https://chromiumcodereview.appspot.com/14113053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202664 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 202580 "Add CompositingReasons to compositor layer types."jchaffraix@chromium.org2013-05-2811-351/+0
| | | | | | | | | | | | | | | | | | It regressed a test on Blink: * compositing/iframes/iframe-content-flipping.html * virtual/softwarecompositing/iframes/iframe-content-flipping.html > Add CompositingReasons to compositor layer types. > > BUG=240946 > > Review URL: https://chromiumcodereview.appspot.com/15051011 TBR=shawnsingh@chromium.org Review URL: https://codereview.chromium.org/16146007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202663 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 202620 "Collect tab timing information for use in telemen..."rtenneti@chromium.org2013-05-2821-355/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | > Collect tab timing information for use in telementry-based startup tests > > Motivation: Data collection exposed in this CL is needed by upcoming startup tests we're writing using Telemtry. > > Expose a new window.statsCollectionController object to JS and move existing histogram reading code into it since that seemed misplaced in DOMAutomationController. > > Add a new --enable-stats-collection-bindings to activate said object. > > Example usage in telemtry: > with browser.Create() as b: > b.tabs[0].Navigate("http://www.google.com") > b.tabs[0].WaitForDocumentReadyStateToBeComplete() > print b.tabs[0].EvaluateJavaScript('statsCollectionController.tabLoadTiming()') > > BUG=None > > Review URL: https://chromiumcodereview.appspot.com/12389073 TBR=jeremy@chromium.org Review URL: https://codereview.chromium.org/16160006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202662 0039d316-1c4b-4281-b951-d872f2087c98
* Skip argv[0] when processing command line options in symlink.pymostynb@opera.com2013-05-281-1/+1
| | | | | | | | | | | | | | | | The problem fixed by this patch is that this script always creates a link to itself in the target location. That behavior was probably not intended and caused problems when running this script several times with the same target folder. Each run of this script would create one expected link and one link to the script itself. Meaning that the need to use --force the second time was needed to overwrite the "self-link" from the first run. Even with --force there were issues if this script was run in parallel since there can be a race condition in overwriting the "self-link". Review URL: https://chromiumcodereview.appspot.com/16096006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202661 0039d316-1c4b-4281-b951-d872f2087c98
* Update configuration of IE for GCF tests.grt@chromium.org2013-05-281-22/+83
| | | | | | | | | | | | | | | | This change: * Adds support for configuring IE8. * Adds support for configuring IE8, 9, and 10 properly if the user had previously skipped configuration. BUG=none R=erikwright@chromium.org Review URL: https://chromiumcodereview.appspot.com/16094006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202660 0039d316-1c4b-4281-b951-d872f2087c98
* Fix AutofillDialogCocoaBrowserTest, AutofillMetricsTest.avi@chromium.org2013-05-282-4/+11
| | | | | | | | | BUG=242659, 234008 TEST=Mac 64 tester bot doesn't time out Review URL: https://chromiumcodereview.appspot.com/15840012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202659 0039d316-1c4b-4281-b951-d872f2087c98
* Supresses app permissions changed dialogs in kiosk mode.zelidrag@chromium.org2013-05-282-19/+30
| | | | | | | | | | | Added tweak for running chromeos=1 builds on Linux machines. BUG=242370 TEST=manual Review URL: https://chromiumcodereview.appspot.com/15713003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202658 0039d316-1c4b-4281-b951-d872f2087c98
* net: HSTS preloading for several linode.com domainsagl@chromium.org2013-05-282-0/+18
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202652 0039d316-1c4b-4281-b951-d872f2087c98
* [chromedriver] Fix race where we might not wait for page load after navigating.kkania@chromium.org2013-05-289-13/+141
| | | | | | | | | | Change the NavigationTracker to assume the page is loading after Page.navigate. BUG=chromedriver:347 R=chrisgao@chromium.org, craigdh@chromium.org Review URL: https://codereview.chromium.org/15772009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202651 0039d316-1c4b-4281-b951-d872f2087c98
* Update perf-expectations to pick up recent changes.anandc@chromium.org2013-05-281-13/+13
| | | | | | | | | BUG=244443,244447 NOTRY=true Review URL: https://chromiumcodereview.appspot.com/15925006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202650 0039d316-1c4b-4281-b951-d872f2087c98
* Disabled flaky DisplayManagerTest.Rotate on Windows.dharcourt@chromium.org2013-05-281-1/+7
| | | | | | | | | BUG=244466 TBR=oshima@chromium.org Review URL: https://chromiumcodereview.appspot.com/15659012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202649 0039d316-1c4b-4281-b951-d872f2087c98
* [CrOS multi-profiles] Restore user sessions after crashnkostylev@chromium.org2013-05-2820-21/+327
| | | | | | | | | | | BUG=180903,238998,230464 TEST=Induce browser crash in multi-profile sessions, observe that all user sessions are restored TEST=CrashRestoreSimpleTest, CrashRestoreComplexTest NOTRY=true Review URL: https://chromiumcodereview.appspot.com/15929005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202647 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup legacy flags and switchesnkostylev@chromium.org2013-05-2817-124/+17
| | | | | | | | | | | | | | | | | | | | kLoginScreen kLoginScreenSize kAshBootAnimationFunction2 kAshBootAnimationFunction3 kAshDisableBootAnimation2 + related flags See also https://gerrit.chromium.org/gerrit/#/c/56735/ BUG=244224 TEST=compiles, existing browser_tests and autotests work NOTRY=true Review URL: https://chromiumcodereview.appspot.com/16105005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202646 0039d316-1c4b-4281-b951-d872f2087c98
* ConstrainedWindow with "proper" background color.groby@chromium.org2013-05-281-4/+13
| | | | | | | | | | | | | ConstrainedWindow used to have clearColor as backgroundColor - which means all underlying views had to assume that the background color was chrome_style::GetBackgroundColor instead of just querying the window. BUG=none Review URL: https://chromiumcodereview.appspot.com/15729008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202645 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce webkit_glue::Latin1OrUTF16ToUTF16abarth@chromium.org2013-05-283-0/+54
| | | | | | | | | | | | This function is helpful for converting WebStrings to string16s. See https://codereview.chromium.org/15866003/ for more context about why we need this function defined in base rather than in Blink. R=darin Review URL: https://chromiumcodereview.appspot.com/15720004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202644 0039d316-1c4b-4281-b951-d872f2087c98
* [Telemetry] Fix blink_perf output trace names on Windows.tonyg@chromium.org2013-05-281-1/+2
| | | | | | | | | | | | | | | | | | | Before: *RESULT third_party\WebKit\PerformanceTests\Parser\html-parser: third_party\WebK it\PerformanceTests\Parser\html-parser= [3177.99999996,3454.00000003,3165.999999 97,3162.99999994,3190.00000006] ms After: *RESULT html-parser: html-parser= [3217.99999999,3337.99999999,3174.0,3397.0,320 1.0] ms BUG=None TEST=python tools/perf/run_measurement --browser=release blink_perf third_party\WebKit\PerformanceTests\ NOTRY=True Review URL: https://chromiumcodereview.appspot.com/15891010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202643 0039d316-1c4b-4281-b951-d872f2087c98
* [rAC] Allow sub-views to trigger layout reflow.groby@chromium.org2013-05-2812-76/+213
| | | | | | | | BUG=157274 Review URL: https://chromiumcodereview.appspot.com/15645004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202642 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 202639 "Use totmaps if available on chromeos"davemoore@chromium.org2013-05-283-112/+38
| | | | | | | | | | | | | | | | | | | | | | | | | > Use totmaps if available on chromeos > > We currently use statm on linux. This provides less than great results. > We take total resident memory and subtract "shared pages" from it instead of > using a count of pages that only this process has mapped. > > On chromeos we've added totmaps which sums up the fields from the process' > smaps. > > BUG=125150 > TEST=Examine memory reports from about:memory and task manager, and compare > them to the sums of the results in the smaps. > > R=thestig@chromium.org, willchan@chromium.org > > Review URL: https://codereview.chromium.org/15779007 TBR=davemoore@chromium.org Review URL: https://codereview.chromium.org/16116003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202640 0039d316-1c4b-4281-b951-d872f2087c98
* Use totmaps if available on chromeosdavemoore@chromium.org2013-05-283-38/+112
| | | | | | | | | | | | | | | | | | | We currently use statm on linux. This provides less than great results. We take total resident memory and subtract "shared pages" from it instead of using a count of pages that only this process has mapped. On chromeos we've added totmaps which sums up the fields from the process' smaps. BUG=125150 TEST=Examine memory reports from about:memory and task manager, and compare them to the sums of the results in the smaps. R=thestig@chromium.org, willchan@chromium.org Review URL: https://codereview.chromium.org/15779007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202639 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2013-05-281-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202638 0039d316-1c4b-4281-b951-d872f2087c98
* [Telemetry] Remove a debugging print statement I accidentally left in.tonyg@chromium.org2013-05-281-3/+0
| | | | | | | | | | BUG=None TEST=None NOTRY=True Review URL: https://chromiumcodereview.appspot.com/16069008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202637 0039d316-1c4b-4281-b951-d872f2087c98
* Prepend the log prefix everywheregman@chromium.org2013-05-282-5/+7
| | | | | | | | BUG=none Review URL: https://chromiumcodereview.appspot.com/16042005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202636 0039d316-1c4b-4281-b951-d872f2087c98
* Simplify the month picker even more by making it locale agnostic for ↵miguelg@chromium.org2013-05-281-179/+51
| | | | | | | | | | everything except the month names BUG=135948 Review URL: https://chromiumcodereview.appspot.com/16023004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202635 0039d316-1c4b-4281-b951-d872f2087c98
* Blink roll 151259:151267eseidel@chromium.org2013-05-281-1/+1
| | | | | | | | | | http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=151260:151267&mode=html TBR= BUG= Review URL: https://chromiumcodereview.appspot.com/15949003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202634 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Migrate the IndexedDB backend from Blink to Chromium"jsbell@chromium.org2013-05-2871-14711/+430
| | | | | | | | | | | This reverts commit 4d9d3bc75c7e6598f8c3b3341f8b9d05afcb821d. BUG=234278 TBR=caitkp Review URL: https://codereview.chromium.org/15659013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202633 0039d316-1c4b-4281-b951-d872f2087c98
* [Telemetry] Attempt to fix flaky testClickWithSelectorWaitForNavigationtonyg@chromium.org2013-05-281-1/+1
| | | | | | | | | | | | | I wasn't able to repro locally, but based on the failure, this looks like it would do the trick. BUG=244459 TEST=tools/telemetry/run_tests testClickWithSelectorWaitForNavigation --repeat-count=5 NOTRY=True Review URL: https://chromiumcodereview.appspot.com/15929007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202629 0039d316-1c4b-4281-b951-d872f2087c98
* mac: Make notification text colors match views.thakis@chromium.org2013-05-284-8/+13
| | | | | | | | | | | | | | Notification titles and button text is drawn in kRegularTextColor, notifcation message text is drawn in kDimTextColor. Move kDimTextColor to message_center_style so that it can be shared. BUG=240877 NOTRY=true Review URL: https://chromiumcodereview.appspot.com/16075002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202628 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac][MC] Allow right click to open the message center tray.rsesek@chromium.org2013-05-282-2/+27
| | | | | | | | BUG=243937 Review URL: https://chromiumcodereview.appspot.com/16073003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202627 0039d316-1c4b-4281-b951-d872f2087c98
* Update OWNERS files to enforce jeremy@ as owning *.sb in subdirectoriesrsleevi@chromium.org2013-05-285-0/+18
| | | | | | | | | | BUG=235756 R=jeremy@chromium.org TBR=avi Review URL: https://chromiumcodereview.appspot.com/16050002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202626 0039d316-1c4b-4281-b951-d872f2087c98
* Adding browsertest to verify that updating forced-installed extensions is ↵csorba@chromium.org2013-05-283-3/+63
| | | | | | | | | | possible. BUG=237495 Review URL: https://chromiumcodereview.appspot.com/16102004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202624 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Resend projecting state to powerd on restart.derat@chromium.org2013-05-281-0/+6
| | | | | | | | | | | This makes Chrome resend the current projecting state to the power manager if the power manager is restarted. BUG=none Review URL: https://chromiumcodereview.appspot.com/15969004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202623 0039d316-1c4b-4281-b951-d872f2087c98
* Ack. Fix typo.rjkroege@chromium.org2013-05-281-1/+1
| | | | | | | | | BUG=none R=backer@chromium.org Review URL: https://codereview.chromium.org/16133006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202622 0039d316-1c4b-4281-b951-d872f2087c98
* Making the condition for showing signin in one click case more general.jwd@chromium.org2013-05-281-5/+2
| | | | | | | | BUG=228976 Review URL: https://chromiumcodereview.appspot.com/14759008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202621 0039d316-1c4b-4281-b951-d872f2087c98
* Collect tab timing information for use in telementry-based startup testsjeremy@chromium.org2013-05-2821-72/+355
| | | | | | | | | | | | | | | | | | | | Motivation: Data collection exposed in this CL is needed by upcoming startup tests we're writing using Telemtry. Expose a new window.statsCollectionController object to JS and move existing histogram reading code into it since that seemed misplaced in DOMAutomationController. Add a new --enable-stats-collection-bindings to activate said object. Example usage in telemtry: with browser.Create() as b: b.tabs[0].Navigate("http://www.google.com") b.tabs[0].WaitForDocumentReadyStateToBeComplete() print b.tabs[0].EvaluateJavaScript('statsCollectionController.tabLoadTiming()') BUG=None Review URL: https://chromiumcodereview.appspot.com/12389073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202620 0039d316-1c4b-4281-b951-d872f2087c98
* Force at least first and last name for CREDIT_CARD_NAME when using Wallet.ahutter@chromium.org2013-05-284-52/+159
| | | | | | | | BUG= Review URL: https://chromiumcodereview.appspot.com/15401005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202618 0039d316-1c4b-4281-b951-d872f2087c98
* Destroy the UserManager after ↵vabr@chromium.org2013-05-281-3/+6
| | | | | | | | | | | | | | | | ChromeBrowserMainPartsLinux::PostMainMessageLoopRun UserManager is needed during MergeSessionThrottle::ShouldShowMergeSessionPage, which appears sometimes to be triggered during ChromeBrowserMainPartsLinux::PostMainMessageLoopRun. I observed this during the test TrayAccessibilityTest.ShowMenu, as described in https://crbug.com/243364#c12. However, at most occasions this was masked by ShouldShowMergeSessionPage being actually triggered earlier. This is restoring the order of destroying UserManager and calling ChromeBrowserMainPartsLinux::PostMainMessageLoopRun to the state before the CL https://chromiumcodereview.appspot.com/15702004/. BUG=243364 Review URL: https://chromiumcodereview.appspot.com/15769004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202617 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: make it possible to undo changes made by replace_gyp_files.pyphajdan.jr@chromium.org2013-05-281-7/+25
| | | | | | | | | | | | See https://groups.google.com/a/chromium.org/d/msg/chromium-packagers/X1Q6P60JZHM/uol7IsRv0-oJ for more info. BUG=none R=maruel@chromium.org Review URL: https://codereview.chromium.org/16121002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202616 0039d316-1c4b-4281-b951-d872f2087c98
* Re-disable flaky android InsertionHandle testscaitkp@google.com2013-05-281-4/+15
| | | | | | | | | TBR=dharcourt@chromium.org BUG=169648 Review URL: https://codereview.chromium.org/16165003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202614 0039d316-1c4b-4281-b951-d872f2087c98
* Add HasClickedListener to the notification delegate in ↵mukai@chromium.org2013-05-281-0/+2
| | | | | | | | | | | | | | | background_content_service. This method was added at r201847 to indicate a notification can be clickable or not (by changing mouse cursor, for now). BUG=241266 TEST=none R=atwilson@chromium.org Review URL: https://chromiumcodereview.appspot.com/16023005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202613 0039d316-1c4b-4281-b951-d872f2087c98
* [chromedriver] Remove unnecessary round trips to Chrome.kkania@chromium.org2013-05-2820-263/+208
| | | | | | | | | | Change alerts system to not request page info from DevTools each command. Also don't fetch main frame ID each time, since NavigationTracker doesn't really need it. BUG=none R=chrisgao@chromium.org Review URL: https://codereview.chromium.org/15393005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202610 0039d316-1c4b-4281-b951-d872f2087c98
* Add NetworkHandler to own network handlers in src/chromeos/networkstevenjb@chromium.org2013-05-2852-557/+621
| | | | | | | | | | | | | This is just some code cleanup and should have no behavior changes. BUG=239073 For webui/chromeos, browser/geolocation: TBR=nkostylev@chromium.org,joth@chromium.org Review URL: https://chromiumcodereview.appspot.com/14729017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202609 0039d316-1c4b-4281-b951-d872f2087c98