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

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

Issue 4979003: Implement web app definition parsing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nacl64 build Created 10 years, 1 month 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
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 "chrome/common/render_messages.h" 5 #include "chrome/common/render_messages.h"
6 6
7 #include "base/values.h" 7 #include "base/values.h"
8 #include "chrome/common/edit_command.h" 8 #include "chrome/common/edit_command.h"
9 #include "chrome/common/extensions/extension_extent.h" 9 #include "chrome/common/extensions/extension_extent.h"
10 #include "chrome/common/extensions/url_pattern.h" 10 #include "chrome/common/extensions/url_pattern.h"
11 #include "chrome/common/gpu_param_traits.h" 11 #include "chrome/common/gpu_param_traits.h"
12 #include "chrome/common/indexed_db_key.h" 12 #include "chrome/common/indexed_db_key.h"
13 #include "chrome/common/indexed_db_param_traits.h" 13 #include "chrome/common/indexed_db_param_traits.h"
14 #include "chrome/common/render_messages_params.h" 14 #include "chrome/common/render_messages_params.h"
15 #include "chrome/common/resource_response.h" 15 #include "chrome/common/resource_response.h"
16 #include "chrome/common/serialized_script_value.h" 16 #include "chrome/common/serialized_script_value.h"
17 #include "chrome/common/speech_input_result.h" 17 #include "chrome/common/speech_input_result.h"
18 #include "chrome/common/thumbnail_score.h" 18 #include "chrome/common/thumbnail_score.h"
19 #include "chrome/common/web_apps.h"
19 #include "gfx/rect.h" 20 #include "gfx/rect.h"
20 #include "ipc/ipc_channel_handle.h" 21 #include "ipc/ipc_channel_handle.h"
21 #include "media/audio/audio_buffers_state.h" 22 #include "media/audio/audio_buffers_state.h"
22 #include "net/base/upload_data.h" 23 #include "net/base/upload_data.h"
23 #include "net/http/http_response_headers.h" 24 #include "net/http/http_response_headers.h"
24 #include "third_party/WebKit/WebKit/chromium/public/WebCompositionUnderline.h" 25 #include "third_party/WebKit/WebKit/chromium/public/WebCompositionUnderline.h"
25 #include "third_party/WebKit/WebKit/chromium/public/WebFindOptions.h" 26 #include "third_party/WebKit/WebKit/chromium/public/WebFindOptions.h"
26 #include "third_party/WebKit/WebKit/chromium/public/WebMediaPlayerAction.h" 27 #include "third_party/WebKit/WebKit/chromium/public/WebMediaPlayerAction.h"
27 #include "third_party/WebKit/WebKit/chromium/public/WebScreenInfo.h" 28 #include "third_party/WebKit/WebKit/chromium/public/WebScreenInfo.h"
28 #include "third_party/skia/include/core/SkBitmap.h" 29 #include "third_party/skia/include/core/SkBitmap.h"
29 #include "webkit/appcache/appcache_interfaces.h" 30 #include "webkit/appcache/appcache_interfaces.h"
30 #include "webkit/blob/blob_data.h" 31 #include "webkit/blob/blob_data.h"
31 #include "webkit/glue/context_menu.h" 32 #include "webkit/glue/context_menu.h"
32 #include "webkit/glue/dom_operations.h"
33 #include "webkit/glue/form_data.h" 33 #include "webkit/glue/form_data.h"
34 #include "webkit/glue/form_field.h" 34 #include "webkit/glue/form_field.h"
35 #include "webkit/glue/password_form.h" 35 #include "webkit/glue/password_form.h"
36 #include "webkit/glue/password_form_dom_manager.h" 36 #include "webkit/glue/password_form_dom_manager.h"
37 #include "webkit/glue/plugins/webplugin.h" 37 #include "webkit/glue/plugins/webplugin.h"
38 #include "webkit/glue/plugins/webplugininfo.h" 38 #include "webkit/glue/plugins/webplugininfo.h"
39 #include "webkit/glue/resource_loader_bridge.h" 39 #include "webkit/glue/resource_loader_bridge.h"
40 #include "webkit/glue/webaccessibility.h" 40 #include "webkit/glue/webaccessibility.h"
41 #include "webkit/glue/webcookie.h" 41 #include "webkit/glue/webcookie.h"
42 #include "webkit/glue/webcursor.h" 42 #include "webkit/glue/webcursor.h"
(...skipping 1203 matching lines...) Expand 10 before | Expand all | Expand 10 after
1246 void ParamTraits<speech_input::SpeechInputResultItem>::Log(const param_type& p, 1246 void ParamTraits<speech_input::SpeechInputResultItem>::Log(const param_type& p,
1247 std::string* l) { 1247 std::string* l) {
1248 l->append("("); 1248 l->append("(");
1249 LogParam(p.utterance, l); 1249 LogParam(p.utterance, l);
1250 l->append(":"); 1250 l->append(":");
1251 LogParam(p.confidence, l); 1251 LogParam(p.confidence, l);
1252 l->append(")"); 1252 l->append(")");
1253 } 1253 }
1254 1254
1255 } // namespace IPC 1255 } // namespace IPC
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698