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

Side by Side Diff: content/browser/webui/web_ui_data_source_impl.cc

Issue 411553003: Validate incoming JS Message Headers: test message parser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed WebUIMojoTest.EndToEndPing Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/browser/webui/web_ui_mojo_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/webui/web_ui_data_source_impl.h" 5 #include "content/browser/webui/web_ui_data_source_impl.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/memory/ref_counted_memory.h" 10 #include "base/memory/ref_counted_memory.h"
(...skipping 13 matching lines...) Expand all
24 24
25 // static 25 // static
26 WebUIDataSource* WebUIDataSource::AddMojoDataSource( 26 WebUIDataSource* WebUIDataSource::AddMojoDataSource(
27 BrowserContext* browser_context) { 27 BrowserContext* browser_context) {
28 WebUIDataSource* mojo_source = Create("mojo"); 28 WebUIDataSource* mojo_source = Create("mojo");
29 29
30 static const struct { 30 static const struct {
31 const char* path; 31 const char* path;
32 int id; 32 int id;
33 } resources[] = { 33 } resources[] = {
34 { mojo::kBufferModuleName, IDR_MOJO_BUFFER_JS },
34 { mojo::kCodecModuleName, IDR_MOJO_CODEC_JS }, 35 { mojo::kCodecModuleName, IDR_MOJO_CODEC_JS },
35 { mojo::kConnectionModuleName, IDR_MOJO_CONNECTION_JS }, 36 { mojo::kConnectionModuleName, IDR_MOJO_CONNECTION_JS },
36 { mojo::kConnectorModuleName, IDR_MOJO_CONNECTOR_JS }, 37 { mojo::kConnectorModuleName, IDR_MOJO_CONNECTOR_JS },
37 { mojo::kRouterModuleName, IDR_MOJO_ROUTER_JS }, 38 { mojo::kRouterModuleName, IDR_MOJO_ROUTER_JS },
38 { mojo::kUnicodeModuleName, IDR_MOJO_UNICODE_JS }, 39 { mojo::kUnicodeModuleName, IDR_MOJO_UNICODE_JS },
39 }; 40 };
40 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(resources); ++i) 41 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(resources); ++i)
41 mojo_source->AddResourcePath(resources[i].path, resources[i].id); 42 mojo_source->AddResourcePath(resources[i].path, resources[i].id);
42 43
43 URLDataManager::AddWebUIDataSource(browser_context, mojo_source); 44 URLDataManager::AddWebUIDataSource(browser_context, mojo_source);
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 } 251 }
251 252
252 void WebUIDataSourceImpl::SendFromResourceBundle( 253 void WebUIDataSourceImpl::SendFromResourceBundle(
253 const URLDataSource::GotDataCallback& callback, int idr) { 254 const URLDataSource::GotDataCallback& callback, int idr) {
254 scoped_refptr<base::RefCountedStaticMemory> response( 255 scoped_refptr<base::RefCountedStaticMemory> response(
255 GetContentClient()->GetDataResourceBytes(idr)); 256 GetContentClient()->GetDataResourceBytes(idr));
256 callback.Run(response.get()); 257 callback.Run(response.get());
257 } 258 }
258 259
259 } // namespace content 260 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/browser/webui/web_ui_mojo_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698