Commit 916cff30 authored by shishir@chromium.org's avatar shishir@chromium.org

Creating a new directory chrome/renderer/searchbox and moving searchbox code to it.


Review URL: https://chromiumcodereview.appspot.com/10825304

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151175 0039d316-1c4b-4281-b951-d872f2087c98
parent 2810b248
...@@ -252,10 +252,10 @@ ...@@ -252,10 +252,10 @@
'renderer/safe_browsing/phishing_url_feature_extractor.h', 'renderer/safe_browsing/phishing_url_feature_extractor.h',
'renderer/safe_browsing/scorer.cc', 'renderer/safe_browsing/scorer.cc',
'renderer/safe_browsing/scorer.h', 'renderer/safe_browsing/scorer.h',
'renderer/searchbox.cc', 'renderer/searchbox/searchbox.cc',
'renderer/searchbox.h', 'renderer/searchbox/searchbox.h',
'renderer/searchbox_extension.cc', 'renderer/searchbox/searchbox_extension.cc',
'renderer/searchbox_extension.h', 'renderer/searchbox/searchbox_extension.h',
'renderer/security_filter_peer.cc', 'renderer/security_filter_peer.cc',
'renderer/security_filter_peer.h', 'renderer/security_filter_peer.h',
'renderer/spellchecker/spellcheck_provider.cc', 'renderer/spellchecker/spellcheck_provider.cc',
......
...@@ -59,8 +59,8 @@ ...@@ -59,8 +59,8 @@
#include "chrome/renderer/print_web_view_helper.h" #include "chrome/renderer/print_web_view_helper.h"
#include "chrome/renderer/safe_browsing/malware_dom_details.h" #include "chrome/renderer/safe_browsing/malware_dom_details.h"
#include "chrome/renderer/safe_browsing/phishing_classifier_delegate.h" #include "chrome/renderer/safe_browsing/phishing_classifier_delegate.h"
#include "chrome/renderer/searchbox.h" #include "chrome/renderer/searchbox/searchbox.h"
#include "chrome/renderer/searchbox_extension.h" #include "chrome/renderer/searchbox/searchbox_extension.h"
#include "chrome/renderer/spellchecker/spellcheck.h" #include "chrome/renderer/spellchecker/spellcheck.h"
#include "chrome/renderer/spellchecker/spellcheck_provider.h" #include "chrome/renderer/spellchecker/spellcheck_provider.h"
#include "chrome/renderer/translate_helper.h" #include "chrome/renderer/translate_helper.h"
......
sreeram@chromium.org
tonyg@chromium.org
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "chrome/renderer/searchbox.h" #include "chrome/renderer/searchbox/searchbox.h"
#include "chrome/common/render_messages.h" #include "chrome/common/render_messages.h"
#include "chrome/renderer/searchbox_extension.h" #include "chrome/renderer/searchbox/searchbox_extension.h"
#include "content/public/renderer/render_view.h" #include "content/public/renderer/render_view.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef CHROME_RENDERER_SEARCHBOX_H_ #ifndef CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_
#define CHROME_RENDERER_SEARCHBOX_H_ #define CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_
#include <vector> #include <vector>
...@@ -63,4 +63,4 @@ class SearchBox : public content::RenderViewObserver, ...@@ -63,4 +63,4 @@ class SearchBox : public content::RenderViewObserver,
DISALLOW_COPY_AND_ASSIGN(SearchBox); DISALLOW_COPY_AND_ASSIGN(SearchBox);
}; };
#endif // CHROME_RENDERER_SEARCHBOX_H_ #endif // CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "chrome/renderer/searchbox_extension.h" #include "chrome/renderer/searchbox/searchbox_extension.h"
#include "chrome/renderer/searchbox.h" #include "chrome/renderer/searchbox/searchbox.h"
#include "content/public/renderer/render_view.h" #include "content/public/renderer/render_view.h"
#include "grit/renderer_resources.h" #include "grit/renderer_resources.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef CHROME_RENDERER_SEARCHBOX_EXTENSION_H_ #ifndef CHROME_RENDERER_SEARCHBOX_SEARCHBOX_EXTENSION_H_
#define CHROME_RENDERER_SEARCHBOX_EXTENSION_H_ #define CHROME_RENDERER_SEARCHBOX_SEARCHBOX_EXTENSION_H_
#include "base/basictypes.h" #include "base/basictypes.h"
...@@ -38,4 +38,4 @@ class SearchBoxExtension { ...@@ -38,4 +38,4 @@ class SearchBoxExtension {
} // namespace extensions_v8 } // namespace extensions_v8
#endif // CHROME_RENDERER_SEARCHBOX_EXTENSION_H_ #endif // CHROME_RENDERER_SEARCHBOX_SEARCHBOX_EXTENSION_H_
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment