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

Side by Side Diff: chrome/common/render_messages.cc

Issue 5680007: Make IndexedDBDispatcherHost be a message filter and move its messages into a... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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 | « chrome/common/render_messages.h ('k') | chrome/common/render_messages_internal.h » ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "base/values.h" 5 #include "base/values.h"
6 #include "chrome/common/edit_command.h" 6 #include "chrome/common/edit_command.h"
7 #include "chrome/common/extensions/extension_extent.h" 7 #include "chrome/common/extensions/extension_extent.h"
8 #include "chrome/common/extensions/url_pattern.h" 8 #include "chrome/common/extensions/url_pattern.h"
9 #include "chrome/common/gpu_param_traits.h" 9 #include "chrome/common/gpu_param_traits.h"
10 #include "chrome/common/indexed_db_key.h"
11 #include "chrome/common/indexed_db_param_traits.h"
12 #include "chrome/common/render_messages_params.h" 10 #include "chrome/common/render_messages_params.h"
13 #include "chrome/common/resource_response.h" 11 #include "chrome/common/resource_response.h"
14 #include "chrome/common/serialized_script_value.h"
15 #include "chrome/common/speech_input_result.h" 12 #include "chrome/common/speech_input_result.h"
16 #include "chrome/common/thumbnail_score.h" 13 #include "chrome/common/thumbnail_score.h"
17 #include "chrome/common/web_apps.h" 14 #include "chrome/common/web_apps.h"
18 #include "gfx/rect.h" 15 #include "gfx/rect.h"
19 #include "ipc/ipc_channel_handle.h" 16 #include "ipc/ipc_channel_handle.h"
20 #include "media/audio/audio_buffers_state.h" 17 #include "media/audio/audio_buffers_state.h"
21 #include "net/base/upload_data.h" 18 #include "net/base/upload_data.h"
22 #include "net/http/http_response_headers.h" 19 #include "net/http/http_response_headers.h"
23 #include "third_party/WebKit/WebKit/chromium/public/WebCompositionUnderline.h" 20 #include "third_party/WebKit/WebKit/chromium/public/WebCompositionUnderline.h"
24 #include "third_party/skia/include/core/SkBitmap.h" 21 #include "third_party/skia/include/core/SkBitmap.h"
(...skipping 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after
1247 void ParamTraits<speech_input::SpeechInputResultItem>::Log(const param_type& p, 1244 void ParamTraits<speech_input::SpeechInputResultItem>::Log(const param_type& p,
1248 std::string* l) { 1245 std::string* l) {
1249 l->append("("); 1246 l->append("(");
1250 LogParam(p.utterance, l); 1247 LogParam(p.utterance, l);
1251 l->append(":"); 1248 l->append(":");
1252 LogParam(p.confidence, l); 1249 LogParam(p.confidence, l);
1253 l->append(")"); 1250 l->append(")");
1254 } 1251 }
1255 1252
1256 } // namespace IPC 1253 } // namespace IPC
OLDNEW
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698