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

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

Issue 424463003: Basic Mojo message header validation for JavaScript. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make claimRange() consistent with isValidRange() Created 6 years, 4 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 19 matching lines...) Expand all
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::kBufferModuleName, IDR_MOJO_BUFFER_JS },
35 { mojo::kCodecModuleName, IDR_MOJO_CODEC_JS }, 35 { mojo::kCodecModuleName, IDR_MOJO_CODEC_JS },
36 { mojo::kConnectionModuleName, IDR_MOJO_CONNECTION_JS }, 36 { mojo::kConnectionModuleName, IDR_MOJO_CONNECTION_JS },
37 { mojo::kConnectorModuleName, IDR_MOJO_CONNECTOR_JS }, 37 { mojo::kConnectorModuleName, IDR_MOJO_CONNECTOR_JS },
38 { mojo::kRouterModuleName, IDR_MOJO_ROUTER_JS }, 38 { mojo::kRouterModuleName, IDR_MOJO_ROUTER_JS },
39 { mojo::kUnicodeModuleName, IDR_MOJO_UNICODE_JS }, 39 { mojo::kUnicodeModuleName, IDR_MOJO_UNICODE_JS },
40 { mojo::kValidatorModuleName, IDR_MOJO_VALIDATOR_JS },
40 }; 41 };
41 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(resources); ++i) 42 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(resources); ++i)
42 mojo_source->AddResourcePath(resources[i].path, resources[i].id); 43 mojo_source->AddResourcePath(resources[i].path, resources[i].id);
43 44
44 URLDataManager::AddWebUIDataSource(browser_context, mojo_source); 45 URLDataManager::AddWebUIDataSource(browser_context, mojo_source);
45 return mojo_source; 46 return mojo_source;
46 } 47 }
47 48
48 // static 49 // static
49 void WebUIDataSource::Add(BrowserContext* browser_context, 50 void WebUIDataSource::Add(BrowserContext* browser_context,
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 } 252 }
252 253
253 void WebUIDataSourceImpl::SendFromResourceBundle( 254 void WebUIDataSourceImpl::SendFromResourceBundle(
254 const URLDataSource::GotDataCallback& callback, int idr) { 255 const URLDataSource::GotDataCallback& callback, int idr) {
255 scoped_refptr<base::RefCountedStaticMemory> response( 256 scoped_refptr<base::RefCountedStaticMemory> response(
256 GetContentClient()->GetDataResourceBytes(idr)); 257 GetContentClient()->GetDataResourceBytes(idr));
257 callback.Run(response.get()); 258 callback.Run(response.get());
258 } 259 }
259 260
260 } // namespace content 261 } // 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