Commit 53fb556d authored by tfarina@chromium.org's avatar tfarina@chromium.org

app_list: Fix the header include guards.

BUG=125846
TBR=ben@chromium.org

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150238 0039d316-1c4b-4281-b951-d872f2087c98
parent 51eff101
...@@ -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_BROWSER_UI_VIEWS_ASH_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ #ifndef CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_VIEW_DELEGATE_H_
#define CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ #define CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_VIEW_DELEGATE_H_
#include <string> #include <string>
...@@ -37,4 +37,4 @@ class AppListViewDelegate : public app_list::AppListViewDelegate { ...@@ -37,4 +37,4 @@ class AppListViewDelegate : public app_list::AppListViewDelegate {
DISALLOW_COPY_AND_ASSIGN(AppListViewDelegate); DISALLOW_COPY_AND_ASSIGN(AppListViewDelegate);
}; };
#endif // CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ #endif // CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_VIEW_DELEGATE_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_BROWSER_UI_VIEWS_ASH_APP_LIST_APPS_MODEL_BUILDER_H_ #ifndef CHROME_BROWSER_UI_ASH_APP_LIST_APPS_MODEL_BUILDER_H_
#define CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_APPS_MODEL_BUILDER_H_ #define CHROME_BROWSER_UI_ASH_APP_LIST_APPS_MODEL_BUILDER_H_
#include <string> #include <string>
#include <vector> #include <vector>
...@@ -66,4 +66,4 @@ class AppsModelBuilder : public content::NotificationObserver { ...@@ -66,4 +66,4 @@ class AppsModelBuilder : public content::NotificationObserver {
DISALLOW_COPY_AND_ASSIGN(AppsModelBuilder); DISALLOW_COPY_AND_ASSIGN(AppsModelBuilder);
}; };
#endif // CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_APPS_MODEL_BUILDER_H_ #endif // CHROME_BROWSER_UI_ASH_APP_LIST_APPS_MODEL_BUILDER_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_BROWSER_UI_VIEWS_ASH_APP_LIST_CHROME_APP_LIST_ITEM_H_ #ifndef CHROME_BROWSER_UI_ASH_APP_LIST_CHROME_APP_LIST_ITEM_H_
#define CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_CHROME_APP_LIST_ITEM_H_ #define CHROME_BROWSER_UI_ASH_APP_LIST_CHROME_APP_LIST_ITEM_H_
#include "ui/app_list/app_list_item_model.h" #include "ui/app_list/app_list_item_model.h"
...@@ -21,9 +21,7 @@ class ChromeAppListItem : public app_list::AppListItemModel { ...@@ -21,9 +21,7 @@ class ChromeAppListItem : public app_list::AppListItemModel {
// associated with this activation. // associated with this activation.
virtual void Activate(int event_flags) = 0; virtual void Activate(int event_flags) = 0;
Type type() const { Type type() const { return type_; }
return type_;
}
protected: protected:
explicit ChromeAppListItem(Type type) : type_(type) {} explicit ChromeAppListItem(Type type) : type_(type) {}
...@@ -35,4 +33,4 @@ class ChromeAppListItem : public app_list::AppListItemModel { ...@@ -35,4 +33,4 @@ class ChromeAppListItem : public app_list::AppListItemModel {
DISALLOW_COPY_AND_ASSIGN(ChromeAppListItem); DISALLOW_COPY_AND_ASSIGN(ChromeAppListItem);
}; };
#endif // CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_CHROME_APP_LIST_ITEM_H_ #endif // CHROME_BROWSER_UI_ASH_APP_LIST_CHROME_APP_LIST_ITEM_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_BROWSER_UI_VIEWS_ASH_APP_LIST_EXTENSION_APP_ITEM_H_ #ifndef CHROME_BROWSER_UI_ASH_APP_LIST_EXTENSION_APP_ITEM_H_
#define CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_EXTENSION_APP_ITEM_H_ #define CHROME_BROWSER_UI_ASH_APP_LIST_EXTENSION_APP_ITEM_H_
#include <string> #include <string>
...@@ -71,4 +71,4 @@ class ExtensionAppItem : public ChromeAppListItem, ...@@ -71,4 +71,4 @@ class ExtensionAppItem : public ChromeAppListItem,
DISALLOW_COPY_AND_ASSIGN(ExtensionAppItem); DISALLOW_COPY_AND_ASSIGN(ExtensionAppItem);
}; };
#endif // CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_EXTENSION_APP_ITEM_H_ #endif // CHROME_BROWSER_UI_ASH_APP_LIST_EXTENSION_APP_ITEM_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_BROWSER_UI_VIEWS_ASH_APP_LIST_SEARCH_BUILDER_H_ #ifndef CHROME_BROWSER_UI_ASH_APP_LIST_SEARCH_BUILDER_H_
#define CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_SEARCH_BUILDER_H_ #define CHROME_BROWSER_UI_ASH_APP_LIST_SEARCH_BUILDER_H_
#include "base/basictypes.h" #include "base/basictypes.h"
#include "base/memory/ref_counted.h" #include "base/memory/ref_counted.h"
...@@ -58,4 +58,4 @@ class SearchBuilder : public AutocompleteControllerDelegate { ...@@ -58,4 +58,4 @@ class SearchBuilder : public AutocompleteControllerDelegate {
DISALLOW_COPY_AND_ASSIGN(SearchBuilder); DISALLOW_COPY_AND_ASSIGN(SearchBuilder);
}; };
#endif // CHROME_BROWSER_UI_VIEWS_ASH_APP_LIST_SEARCH_BUILDER_H_ #endif // CHROME_BROWSER_UI_ASH_APP_LIST_SEARCH_BUILDER_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