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

Side by Side Diff: chrome/renderer/chrome_content_renderer_client.cc

Issue 8220006: Rename RenderView to RenderViewImpl. Update Chrome's DEPS so that it can't include the RenderView... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 | « chrome/renderer/DEPS ('k') | chrome/renderer/chrome_render_view_observer.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) 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 "chrome/renderer/chrome_content_renderer_client.h" 5 #include "chrome/renderer/chrome_content_renderer_client.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 #include "chrome/renderer/searchbox_extension.h" 56 #include "chrome/renderer/searchbox_extension.h"
57 #include "chrome/renderer/spellchecker/spellcheck.h" 57 #include "chrome/renderer/spellchecker/spellcheck.h"
58 #include "chrome/renderer/spellchecker/spellcheck_provider.h" 58 #include "chrome/renderer/spellchecker/spellcheck_provider.h"
59 #include "chrome/renderer/translate_helper.h" 59 #include "chrome/renderer/translate_helper.h"
60 #include "chrome/renderer/visitedlink_slave.h" 60 #include "chrome/renderer/visitedlink_slave.h"
61 #include "content/public/renderer/render_thread.h" 61 #include "content/public/renderer/render_thread.h"
62 #include "content/public/renderer/render_view.h" 62 #include "content/public/renderer/render_view.h"
63 #include "grit/generated_resources.h" 63 #include "grit/generated_resources.h"
64 #include "grit/locale_settings.h" 64 #include "grit/locale_settings.h"
65 #include "grit/renderer_resources.h" 65 #include "grit/renderer_resources.h"
66 #include "ipc/ipc_sync_message.h" 66 #include "ipc/ipc_sync_channel.h"
67 #include "net/base/net_errors.h" 67 #include "net/base/net_errors.h"
68 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h" 68 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h"
69 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" 69 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h"
70 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 70 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
71 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 71 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
72 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" 72 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h"
73 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" 73 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h"
74 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" 74 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h"
75 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" 75 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h"
76 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLError.h" 76 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLError.h"
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 if (spellcheck_.get()) 773 if (spellcheck_.get())
774 thread->RemoveObserver(spellcheck_.get()); 774 thread->RemoveObserver(spellcheck_.get());
775 SpellCheck* new_spellcheck = new SpellCheck(); 775 SpellCheck* new_spellcheck = new SpellCheck();
776 if (spellcheck_provider_) 776 if (spellcheck_provider_)
777 spellcheck_provider_->SetSpellCheck(new_spellcheck); 777 spellcheck_provider_->SetSpellCheck(new_spellcheck);
778 spellcheck_.reset(new_spellcheck); 778 spellcheck_.reset(new_spellcheck);
779 thread->AddObserver(new_spellcheck); 779 thread->AddObserver(new_spellcheck);
780 } 780 }
781 781
782 } // namespace chrome 782 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/renderer/DEPS ('k') | chrome/renderer/chrome_render_view_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698