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

Unified Diff: apps/shell/shell_content_browser_client.cc

Issue 99053008: Rename apps::AppShell* to apps::Shell* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « apps/shell/shell_content_browser_client.h ('k') | apps/shell/shell_content_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/shell/shell_content_browser_client.cc
diff --git a/apps/shell/app_shell_content_browser_client.cc b/apps/shell/shell_content_browser_client.cc
similarity index 58%
rename from apps/shell/app_shell_content_browser_client.cc
rename to apps/shell/shell_content_browser_client.cc
index a5eedbd61283f06132d6215da992720364129b03..d269965c62ff013bc2598066ca5a395141e79243 100644
--- a/apps/shell/app_shell_content_browser_client.cc
+++ b/apps/shell/shell_content_browser_client.cc
@@ -2,29 +2,29 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "apps/shell/app_shell_content_browser_client.h"
+#include "apps/shell/shell_content_browser_client.h"
-#include "apps/shell/app_shell_browser_context.h"
-#include "apps/shell/app_shell_browser_main_parts.h"
+#include "apps/shell/shell_browser_context.h"
+#include "apps/shell/shell_browser_main_parts.h"
#include "content/shell/browser/shell_browser_context.h"
namespace apps {
-AppShellContentBrowserClient::AppShellContentBrowserClient()
+ShellContentBrowserClient::ShellContentBrowserClient()
: browser_main_parts_(NULL) {
}
-AppShellContentBrowserClient::~AppShellContentBrowserClient() {
+ShellContentBrowserClient::~ShellContentBrowserClient() {
}
-content::BrowserMainParts* AppShellContentBrowserClient::CreateBrowserMainParts(
+content::BrowserMainParts* ShellContentBrowserClient::CreateBrowserMainParts(
const content::MainFunctionParams& parameters) {
- browser_main_parts_ = new AppShellBrowserMainParts(parameters);
+ browser_main_parts_ = new ShellBrowserMainParts(parameters);
return browser_main_parts_;
}
net::URLRequestContextGetter*
-AppShellContentBrowserClient::CreateRequestContext(
+ShellContentBrowserClient::CreateRequestContext(
content::BrowserContext* content_browser_context,
content::ProtocolHandlerMap* protocol_handlers) {
// TODO(jamescook): Should this be an off-the-record context?
« no previous file with comments | « apps/shell/shell_content_browser_client.h ('k') | apps/shell/shell_content_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698