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

Side by Side Diff: content/renderer/render_view_browsertest.cc

Issue 6683066: Remove render_messages_params files since they're not needed anymore. I moved the search provide... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 8 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 | « content/renderer/render_view.cc ('k') | content/renderer/render_widget.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/basictypes.h" 5 #include "base/basictypes.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/shared_memory.h" 8 #include "base/shared_memory.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 #include "chrome/common/autofill_messages.h" 11 #include "chrome/common/autofill_messages.h"
12 #include "chrome/common/content_settings.h" 12 #include "chrome/common/content_settings.h"
13 #include "chrome/common/render_messages.h" 13 #include "chrome/common/render_messages.h"
14 #include "chrome/common/render_messages_params.h"
15 #include "chrome/renderer/autofill/autofill_agent.h" 14 #include "chrome/renderer/autofill/autofill_agent.h"
16 #include "chrome/renderer/print_web_view_helper.h" 15 #include "chrome/renderer/print_web_view_helper.h"
17 #include "chrome/test/render_view_test.h" 16 #include "chrome/test/render_view_test.h"
18 #include "content/common/native_web_keyboard_event.h" 17 #include "content/common/native_web_keyboard_event.h"
19 #include "content/common/view_messages.h" 18 #include "content/common/view_messages.h"
20 #include "net/base/net_errors.h" 19 #include "net/base/net_errors.h"
21 #include "printing/image.h" 20 #include "printing/image.h"
22 #include "printing/native_metafile.h" 21 #include "printing/native_metafile.h"
23 #include "testing/gtest/include/gtest/gtest.h" 22 #include "testing/gtest/include/gtest/gtest.h"
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
(...skipping 1208 matching lines...) Expand 10 before | Expand all | Expand 10 after
1233 LoadHTML("<html><head><meta http-equiv=\"content-language\" " 1232 LoadHTML("<html><head><meta http-equiv=\"content-language\" "
1234 "content=\" fr , es,en \">" 1233 "content=\" fr , es,en \">"
1235 "</head><body>A random page with random content.</body></html>"); 1234 "</head><body>A random page with random content.</body></html>");
1236 ProcessPendingMessages(); 1235 ProcessPendingMessages();
1237 message = render_thread_.sink().GetUniqueMessageMatching( 1236 message = render_thread_.sink().GetUniqueMessageMatching(
1238 ViewHostMsg_PageContents::ID); 1237 ViewHostMsg_PageContents::ID);
1239 ASSERT_NE(static_cast<IPC::Message*>(NULL), message); 1238 ASSERT_NE(static_cast<IPC::Message*>(NULL), message);
1240 ViewHostMsg_PageContents::Read(message, &params); 1239 ViewHostMsg_PageContents::Read(message, &params);
1241 EXPECT_EQ("fr", params.d); 1240 EXPECT_EQ("fr", params.d);
1242 } 1241 }
OLDNEW
« no previous file with comments | « content/renderer/render_view.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698