summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix a minor nit in the JSON schema compiler.thestig@chromium.org2012-08-281-2/+2
| | | | | | Review URL: https://chromiumcodereview.appspot.com/10869083 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153633 0039d316-1c4b-4281-b951-d872f2087c98
* Dynamic resize of display rectangles.mukai@chromium.org2012-08-282-21/+43
| | | | | | | | | | | | This improves the UI for handling huge displays. Also adding overflow: hidden to prohibit scrollbar explicitly. BUG=144024 Review URL: https://chromiumcodereview.appspot.com/10873081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153632 0039d316-1c4b-4281-b951-d872f2087c98
* Add explicit forwarding stubs for geometry classes cc usesjamesr@chromium.org2012-08-289-1/+58
| | | | | | | | | | | | | | | | | libcc depends on several geometry types from WebCore - IntRect, FloatQuad, etc. We were picking these up by a header copying rule in the webkit_platform target that copies these headers into the generated build dir, but since there is no hard dependency link from libcc to webkit_platform this either work or not work depending on the exact build order on the user's system and was thus very fragile. This adds explicit forwarding headers which are ugly but at least will work. BUG= Review URL: https://chromiumcodereview.appspot.com/10883076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153631 0039d316-1c4b-4281-b951-d872f2087c98
* Use the i18n tag for strings that can't be translated.jamiewalch@chromium.org2012-08-281-7/+7
| | | | | | | | | | | This makes errors easier to spot during QA and also means that end-users aren't completely without context if one slips through (assuming our tag names are sensible). BUG= Review URL: https://chromiumcodereview.appspot.com/10879108 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153630 0039d316-1c4b-4281-b951-d872f2087c98
* Connect PpapiDecryptor and PluginInstance.xhwang@chromium.org2012-08-287-64/+292
| | | | | | | | | | | | | | - In PpapiDecrytor, enable calls into the PluginInstance. - In PluginInstance, passing in all data needed by the PPP_ContentDecryptor interface. - Hook up DecryptorClient and PPB_ContentDecryptor calls in PluginInstance. BUG=138139 TEST=none Review URL: https://chromiumcodereview.appspot.com/10871006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153629 0039d316-1c4b-4281-b951-d872f2087c98
* Log additional information to try and track down a crash.aa@chromium.org2012-08-281-1/+4
| | | | | | | | | BUG=142496 Review URL: https://chromiumcodereview.appspot.com/10869084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153625 0039d316-1c4b-4281-b951-d872f2087c98
* Adding 'blob:' and 'filesystem:' URLs as secure sources for extensions.mkwst@chromium.org2012-08-282-0/+11
| | | | | | | | | | | | | | | Extensions currently enforce the requirement that Content Security Policy directives contain only secure sources. As 'blob:' and 'filesystem:' URLs are same-origin with the resource that created them, and never touch the network, we should allow them in extensions' 'content_security_policy' declarations. BUG=144610 Review URL: https://chromiumcodereview.appspot.com/10873060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153624 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 153612 - Add Chrome Endure graph plotting code. (broke Chrome OS)jschuh@chromium.org2012-08-285-1619/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Chrome Endure refers to an endurance testing effort to study the effect of memory bloat in webapps running in chrome. This code is a fork of chrome's existing code for displaying performance graphs. It has become very specific to Chrome Endure, containing features requested by users of Chrome Endure, and having the ability to display performance results across time within a given test run (as compared to the existing chrome perf graphs, which display data across test runs). In addition to adding new features specific to Chrome Endure, the current code removes some features that originally existed from chrome's perf graphing code, which haven't been used for Chrome Endure. This code has been running for awhile to display Chrome Endure perf graphs, but hasn't been checked in until now. Other users want to build on top of this codebase to add new graphing features specific to Chrome Endure. BUG=chromium-os:32302 TEST=Verified that graphs work well enough for current Chrome Endure purposes. Review URL: https://chromiumcodereview.appspot.com/10832403 TBR=dennisjeffrey@chromium.org Review URL: http://codereview.chromium.org/10879112 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153623 0039d316-1c4b-4281-b951-d872f2087c98
* Rename SyncNotifier->Invalidator and SyncNotifierObserver->InvalidationHandler.dcheng@chromium.org2012-08-2850-748/+740
| | | | | | | | | | | | | This makes the naming more consistent with how the various classes and interfaces are used, since they are not sync-specific anymore. BUG=none TBR=sky Review URL: https://chromiumcodereview.appspot.com/10875064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153619 0039d316-1c4b-4281-b951-d872f2087c98
* Move ModuleSystem and NativeHandler to extensions/aa@chromium.org2012-08-2813-25/+47
| | | | | | | | | TBR=jam@chromium.org Review URL: https://chromiumcodereview.appspot.com/10879107 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153618 0039d316-1c4b-4281-b951-d872f2087c98
* Support fetching AwContents from a WebContentsjoth@chromium.org2012-08-282-0/+35
| | | | | | | | | | | | This is to allow callbacks coming up from WebContents to find their way back to the java AwContents[Client] BUG= Review URL: https://chromiumcodereview.appspot.com/10868095 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153617 0039d316-1c4b-4281-b951-d872f2087c98
* Basic framework for devtools-based scrolling tests.nduca@chromium.org2012-08-2819-0/+1930
| | | | | | | | | BUG=144483 Review URL: https://chromiumcodereview.appspot.com/10875044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153616 0039d316-1c4b-4281-b951-d872f2087c98
* Improve the device type constants.vandebo@chromium.org2012-08-2811-53/+55
| | | | | | | | | | | | Since we actually can detect removable on Linux (and not just proxy usb for removable), use that as the name of device types. BUG=NONE Review URL: https://chromiumcodereview.appspot.com/10876093 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153615 0039d316-1c4b-4281-b951-d872f2087c98
* alternate ntp: fix toolbar separator visibility when query is clearedkuan@chromium.org2012-08-285-11/+23
| | | | | | | | | | | | | | | - when query is cleared, suggestions disappear, but toolbar separator still shouldn't show up - fix to only show separator in SUGGESTIONS mode when user input is not in progress BUG=144764 TEST=verify per bug rpt Review URL: https://chromiumcodereview.appspot.com/10873094 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153614 0039d316-1c4b-4281-b951-d872f2087c98
* Support setting an explicit duration on MediaSource objectsvrk@chromium.org2012-08-289-6/+220
| | | | | | | | | | | This is the Chromium-side change to support MediaSource's duration attribute. BUG=NONE Review URL: https://chromiumcodereview.appspot.com/10879056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153613 0039d316-1c4b-4281-b951-d872f2087c98
* Add Chrome Endure graph plotting code.dennisjeffrey@chromium.org2012-08-285-0/+1619
| | | | | | | | | | | | | | | | | | | | | | | | | | | Chrome Endure refers to an endurance testing effort to study the effect of memory bloat in webapps running in chrome. This code is a fork of chrome's existing code for displaying performance graphs. It has become very specific to Chrome Endure, containing features requested by users of Chrome Endure, and having the ability to display performance results across time within a given test run (as compared to the existing chrome perf graphs, which display data across test runs). In addition to adding new features specific to Chrome Endure, the current code removes some features that originally existed from chrome's perf graphing code, which haven't been used for Chrome Endure. This code has been running for awhile to display Chrome Endure perf graphs, but hasn't been checked in until now. Other users want to build on top of this codebase to add new graphing features specific to Chrome Endure. BUG=chromium-os:32302 TEST=Verified that graphs work well enough for current Chrome Endure purposes. Review URL: https://chromiumcodereview.appspot.com/10832403 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153612 0039d316-1c4b-4281-b951-d872f2087c98
* Context menus for text fields in platform apps should show available actions ↵mek@chromium.org2012-08-283-2/+66
| | | | | | | | | | | (copy, paste, etc). BUG=143312 Review URL: https://chromiumcodereview.appspot.com/10828392 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153611 0039d316-1c4b-4281-b951-d872f2087c98
* remoting_me2me_host: Don't try to display UI on top of Mac login screenlambroslambrou@chromium.org2012-08-281-5/+24
| | | | | | | | | | | | | Trying to display the Disconnect window causes rejection from the Window Server on OS X 10.7.4, preventing the capturer from working. BUG=140984 TEST=Verify Chromoting works on the system login screen. Review URL: https://chromiumcodereview.appspot.com/10883033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153610 0039d316-1c4b-4281-b951-d872f2087c98
* Move STARTUPINFO manipulation into SpawnTargetjschuh@chromium.org2012-08-283-13/+25
| | | | | | Review URL: https://chromiumcodereview.appspot.com/10878071 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153606 0039d316-1c4b-4281-b951-d872f2087c98
* Extensions Docs Server: Fix samples page and ExampleZippercduvall@chromium.org2012-08-289-14/+213
| | | | | | | | | | | | The path for the default images in the samples page was wrong because of recent branch/channel switches, and ExampleZipper was getting cached unicode data instead of binary data. BUG=144672 Review URL: https://chromiumcodereview.appspot.com/10878056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153604 0039d316-1c4b-4281-b951-d872f2087c98
* drive: Fix a crash caused by an empty edit URLsatorux@chromium.org2012-08-283-8/+17
| | | | | | | | | | | | | | | | | For some reason, edit URL can be null in some entries, which causes a crash. Along the way, make |callback| parameter of DriveFilesystemInterface::Remove() mandatory. The only caller in gdata_file_system_proxy.cc passes a non-null callback. BUG=144993 TEST=remove operation works as before Review URL: https://chromiumcodereview.appspot.com/10880075 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153603 0039d316-1c4b-4281-b951-d872f2087c98
* No more extension install infobars (on Mac).yoz@chromium.org2012-08-282-64/+20
| | | | | | | | | BUG=109940 TEST=On mac, install https://chrome.google.com/webstore/detail/dmgcpfplbobdchnijhbmogkbibagiiam and see a bubble pointing to the wrench menu instead of an infobar. Review URL: https://chromiumcodereview.appspot.com/10872067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153602 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-08-281-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153601 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 126759:126787.jchaffraix@chromium.org2012-08-281-1/+1
| | | | | | | TBR=dominicc@chromium.org Review URL: https://chromiumcodereview.appspot.com/10870112 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153600 0039d316-1c4b-4281-b951-d872f2087c98
* Switch RenderTextMac to use point font sizes instead of pixel font sizes.asvitkine@chromium.org2012-08-281-67/+4
| | | | | | | | | | | | | | | | The previous implementation tried to use pixel sizes for consistency with implementations of RenderText on other platforms. However, it turns out that Skia itself uses point font sizes on Mac as does gfx::Font, so it makes more sense to use point sizes throughout. BUG=125664, 137033 TEST=Patch in http://codereview.chromium.org/10879069/ and bring up a print preview on www.google.com. Letter spacing for the header and footer text should be the same as what's produced by current Canary. Review URL: https://chromiumcodereview.appspot.com/10874066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153599 0039d316-1c4b-4281-b951-d872f2087c98
* Remove transitional WEBLAYERTREEVIEW_IS_PURE_VIRTUAL guarded codejamesr@chromium.org2012-08-282-29/+0
| | | | | | | | | | | Depends on http://trac.webkit.org/changeset/126652 BUG= Review URL: https://chromiumcodereview.appspot.com/10873073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153598 0039d316-1c4b-4281-b951-d872f2087c98
* Move functions for controlling Caps Lock to CapsLockDelegate from ↵mazda@chromium.org2012-08-2824-110/+198
| | | | | | | | | | | | | | | SystemTrayDelegate. - Add functions for controlling Caps Lock to CapsLockDelegate - Move the ownership of CapsLockDelegate to Shell from AcceleratorController - Add ShellDelegate::CreateCapsLockDelegate BUG=144474 Review URL: https://chromiumcodereview.appspot.com/10878058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153597 0039d316-1c4b-4281-b951-d872f2087c98
* New WebKitBrowserTest for content_shell not providing a prerenderer client.gavinp@chromium.org2012-08-282-0/+37
| | | | | | | | | | | | | The content_shell doesn't provide a prerendererclient (and chromium and DumpRenderTree do). This browsertest makes sure that encountering a prerendering element doesn't crash the content_shell. This patch must land after https://bugs.webkit.org/show_bug.cgi?id=95036 lands and is gardened into Chromium. R=jam@chromium.org BUG=144556 Review URL: https://chromiumcodereview.appspot.com/10869068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153596 0039d316-1c4b-4281-b951-d872f2087c98
* notifications: Forward declared Balloon in notification_options_menu_model.htfarina@chromium.org2012-08-282-2/+6
| | | | | | | | R=stevenjb@chromium.org Review URL: https://chromiumcodereview.appspot.com/10879008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153594 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 153563 - Remove DownloadFileManager in favor of direct ownership of ↵isherman@chromium.org2012-08-2836-1241/+1714
| | | | | | | | | | | | | | | | | | | | | | | | | | | DownloadFiles. This CL appears to have caused SavePageBrowserTest.SaveViewSourceHTMLOnly to fail flakily. This CL is equivalent to CLs http://codereview.chromium.org/10799005, http://codereview.chromium.org/10836293, and https://chromiumcodereview.appspot.com/10823406, which were previous attempts to land the same functionality. TBR=jam@chromium.org BUG=123998 BUG=144751 Review URL: https://chromiumcodereview.appspot.com/10867065 TBR=rdsmith@chromium.org Review URL: https://chromiumcodereview.appspot.com/10872102 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153593 0039d316-1c4b-4281-b951-d872f2087c98
* Show tooltips on ash tray network items.varunjain@chromium.org2012-08-283-3/+17
| | | | | | | | | | BUG=136588 TEST=manual Review URL: https://chromiumcodereview.appspot.com/10876091 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153592 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 153571 - Create base class for TabHelpers.alexeypa@google.com2012-08-284-94/+0
| | | | | | | | | | | | | | | WebContentsUserDataTest.BasicTest is flaky. BUG=107201 TEST=none Review URL: https://chromiumcodereview.appspot.com/10868115 TBR=avi@chromium.org Review URL: https://chromiumcodereview.appspot.com/10873101 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153591 0039d316-1c4b-4281-b951-d872f2087c98
* Refactor SelectFaviconFrames to make it easy to use SelectFaviconFrames on ↵pkotwicz@chromium.org2012-08-281-53/+136
| | | | | | | | | | | | | | objects other than SkBitmaps. Changed the selection and score calculation code to operate on std::vector<gfx::Size> instead of an std::vector<SkBitmap>. Bug=10802066 Test=SelectFaviconFramesTest.* pass TBR=thakis Review URL: https://chromiumcodereview.appspot.com/10872093 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153590 0039d316-1c4b-4281-b951-d872f2087c98
* Re-enable SSLUITest.TestBadHTTPSDownload and make it stop hanging by using apauljensen@chromium.org2012-08-281-3/+12
| | | | | | | | | | | | | temporary download directory to avoid Chrome pending on user input of a new filename. BUG=144624 TEST=browser_tests --gtest_filter=SSLUITest.TestBadHTTPSDownload Review URL: https://chromiumcodereview.appspot.com/10868111 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153589 0039d316-1c4b-4281-b951-d872f2087c98
* When using action box on Mac, hide star when page is not bookmarked.beaudoin@chromium.org2012-08-274-5/+25
| | | | | | | | | BUG=138118 Review URL: https://chromiumcodereview.appspot.com/10874068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153587 0039d316-1c4b-4281-b951-d872f2087c98
* Platform app context menu items should not be grouped into a submenu.mek@chromium.org2012-08-273-32/+39
| | | | | | | | | BUG=141898 Review URL: https://chromiumcodereview.appspot.com/10832349 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153585 0039d316-1c4b-4281-b951-d872f2087c98
* Add notification button resources.jennyz@chromium.org2012-08-2712-0/+0
| | | | | | | | | | | | | | Resource files are in http://codereview.chromium.org/10883041/ This is trying to re-created stevenjb's cl: http://codereview.chromium.org/10883041/ BUG=144723 TBR=oshima Review URL: https://chromiumcodereview.appspot.com/10879106 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153584 0039d316-1c4b-4281-b951-d872f2087c98
* Adding binary test files in advance of CL landing, so tryjobs can runasargent@chromium.org2012-08-2719-0/+152
| | | | | | | | | | | | | These were split out from dharcourt@chromium.org's review here: https://chromiumcodereview.appspot.com/10868050/ BUG=133746 TBR=asargent@chromium.org Review URL: https://chromiumcodereview.appspot.com/10870116 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153583 0039d316-1c4b-4281-b951-d872f2087c98
* AddEntryToDirectory now takes a FilePath and scoped_ptr<DocumentEntry>achuith@chromium.org2012-08-276-176/+144
| | | | | | | | | | | | | | | | | | | | * DriveResourceMetadata::AddEntryToDirectory now takes a FilePath and scoped_ptr<DocumentEntry>. * DriveFileSystem::AddUploadedParams now take a directory FilePath and a scoped_ptr<DocumentEntry>. * Anon helper function PostError in drive_resource_metadata.cc posts an async callback error. * DriveFileSystem's OnCreateDirectoryCompleted renamed to AddNewDirectory. The old synchronous AddNewDirectory is gone, replaced by a call to DriveResourceMetadata::AddEntryToDirectory, continuing with DriveFileSystem::ContinueCreateDirectory. * DriveFileSystem's CreateDirectoryParams has moved to the header file so AddNewDirectory may be called by the unit test. * DriveFileSystem's RenameEntryLocally, RenameAfterGetEntryInfo and NotifyAndRunFileMoveCallback now require a non-null callback. * AddUploadedFileToCache calls OnDirectoryChanged directly instead of the indirection through NotifyAndRunFileMoveCallback. Also additional DCHECKs in AddUploadedFileToCache. * callback_runner no longer necessary in AddUploadedFileOnUIThread. * entry replaced with doc_entry everywhere to avoid confusion with GDataEntry. * virtual_dir_path replaced with directory_path everywhere for consistency. * delete FindEntryCallback, which is no longer used. BUG=142048 TEST=unit tests Review URL: https://chromiumcodereview.appspot.com/10876075 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153582 0039d316-1c4b-4281-b951-d872f2087c98
* Disabled DNDToDifferentMenu test on linux.robertshield@chromium.org2012-08-271-1/+2
| | | | | | | | | | BUG=129861 TEST=NONE TBR=alexeypa@chromium.org, isherman@chromium.org Review URL: https://chromiumcodereview.appspot.com/10878087 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153581 0039d316-1c4b-4281-b951-d872f2087c98
* Added break statement in ↵kmadhusu@chromium.org2012-08-271-0/+1
| | | | | | | | | | | | MediaTransferProtocolDaemonClient::FileEntry::InitialFromResponse function. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10873076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153580 0039d316-1c4b-4281-b951-d872f2087c98
* *v8::String::Utf8Value can return NULL.aa@chromium.org2012-08-271-2/+9
| | | | | | | | BUG=144436 Review URL: https://chromiumcodereview.appspot.com/10873095 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153579 0039d316-1c4b-4281-b951-d872f2087c98
* Disable media device attach intent.kmadhusu@chromium.org2012-08-272-0/+7
| | | | | | | | | | BUG=144326 TEST=none Review URL: https://chromiumcodereview.appspot.com/10872094 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153578 0039d316-1c4b-4281-b951-d872f2087c98
* Simplify regex matching in build-deb.sh.sergeyu@chromium.org2012-08-271-2/+1
| | | | | | Review URL: https://chromiumcodereview.appspot.com/10882070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153577 0039d316-1c4b-4281-b951-d872f2087c98
* Change system level background from red to black.sky@chromium.org2012-08-271-1/+1
| | | | | | | | | | | BUG=137342 TEST=none R=ben@chromium.org TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10872098 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153576 0039d316-1c4b-4281-b951-d872f2087c98
* Ensure we don't use SwiftShader to present Flash Fullscreen.jbauman@chromium.org2012-08-274-0/+11
| | | | | | | | | | | | Flash isn't using 3D in this case, so using Swiftshader to present just slows it down BUG=142107 Review URL: https://chromiumcodereview.appspot.com/10875074 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153575 0039d316-1c4b-4281-b951-d872f2087c98
* Recreate the InstantLoader as soon as it is deleted and ensure that it does ↵shishir@chromium.org2012-08-273-27/+125
| | | | | | | | | | not become stale. BUG=143745 Review URL: https://chromiumcodereview.appspot.com/10829436 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153574 0039d316-1c4b-4281-b951-d872f2087c98
* Remove MediaDeviceMapService references from ↵kmadhusu@chromium.org2012-08-271-19/+2
| | | | | | | | | | | | |DeviceAttachedIntentSource::OnMediaDetached| function. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10868110 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153573 0039d316-1c4b-4281-b951-d872f2087c98
* Create base class for TabHelpers.avi@chromium.org2012-08-274-0/+94
| | | | | | | | | | BUG=107201 TEST=none Review URL: https://chromiumcodereview.appspot.com/10868115 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153571 0039d316-1c4b-4281-b951-d872f2087c98
* Add X-Frame-Options to WebUI pages.tsepez@chromium.org2012-08-271-0/+27
| | | | | | | | BUG=91551 Review URL: https://chromiumcodereview.appspot.com/10869003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153570 0039d316-1c4b-4281-b951-d872f2087c98